feat: add app controller with endpoints for application version and health checks.
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m19s

This commit is contained in:
Luis Eduardo Estevao
2026-01-07 20:23:23 -03:00
parent 90366c21e5
commit 2b9868bf6d

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: 'SIMPLIFIQUE HOME CENTER' };
return { status: 'SIMPLIFIQUE HOME CENTER 2026' };
}
}