From 95850ea39bbeef9d50191cfd3ef4f248384cc14b Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Tue, 6 Jan 2026 11:07:03 -0300 Subject: [PATCH] fix: update health check status message to 'JURUNENSE HOME CENTER BR' --- 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 da21b80..4179731 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 HOME CENTER ' }; + return { status: 'JURUNENSE HOME CENTER BR ' }; } }