fix: correct health check response message
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m30s

This commit is contained in:
2026-01-05 20:13:29 -05:00
parent ce988e93b1
commit bda9f0f13b

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: 'simplifique home centerrr' };
return { status: 'simplifique' };
}
}