From 599a916257b3cda7e10f3767ffe030b8e9aefdce Mon Sep 17 00:00:00 2001 From: simplifique Date: Thu, 12 Feb 2026 17:36:55 -0300 Subject: [PATCH] fix: update health check status message to reflect new version --- 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 1902f02..27625a1 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: 'SIMPLIFIQUE HOME CENTER 2026' }; + return { status: 'NOVA VERSAO 2026' }; } }