From 4e926909b87b2e6429adfb55beaeaaec63338893 Mon Sep 17 00:00:00 2001 From: joelson Date: Tue, 6 Jan 2026 12:26:43 -0300 Subject: [PATCH] fix: update health check status message to 'TESTE COM ALESSANDRO' --- 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 bc525f5..b0dff2f 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: ':Jurunense homecenter ' }; + return { status: 'TESTE COM ALESSANDRO ' }; } }