diff --git a/src/app.controller.ts b/src/app.controller.ts index 470a286..1c1c513 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -11,10 +11,10 @@ export class AppController { return { version: APP_VERSION }; } - @Get('health') +@Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: 'ok' }; + return { status: ':ok 2 ' }; } }