diff --git a/server/src/health/health.controller.ts b/server/src/health/health.controller.ts new file mode 100644 index 0000000..f23d213 --- /dev/null +++ b/server/src/health/health.controller.ts @@ -0,0 +1,9 @@ +import { Controller, Get } from "@nestjs/common"; + +@Controller('health') +export class HealthController { + @Get() + check() { + return { status: 'ok' }; + } +} \ No newline at end of file