Add health check and dev script

This commit is contained in:
Will H
2024-07-05 10:10:08 +12:00
parent a4ec2dac6c
commit 66773dfaca
4 changed files with 39 additions and 1 deletions

View File

@ -0,0 +1,8 @@
import { Global, Module } from '@nestjs/common';
import { HealthController } from './health.controller';
@Global()
@Module({
controllers: [HealthController],
})
export class HealthModule {}