From e2a008e9a9fdfbc7fa9e50254cc49891dc15caab Mon Sep 17 00:00:00 2001 From: simplifique Date: Mon, 5 Jan 2026 18:45:48 -0500 Subject: [PATCH] fix: update health check response to return version 3 --- src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 7f421c6..18fffae 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -14,7 +14,7 @@ export class AppController { @Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: 'ok v2' }; + return { status: 'ok v3' }; } }