From bda9f0f13b20003c6eab5e0e19cf1b793494e592 Mon Sep 17 00:00:00 2001 From: simplifique Date: Mon, 5 Jan 2026 20:13:29 -0500 Subject: [PATCH] fix: correct health check response message --- 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 03d02e9..72518bd 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 centerrr' }; + return { status: 'simplifique' }; } }