diff --git a/src/app.controller.ts b/src/app.controller.ts index cce879e..f33754a 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -9,4 +9,9 @@ export class AppController { getHello(): string { return this.appService.getHello(); } + + @Get('/health') + health() { + return { status: 'ok' }; + } }