feat: add app controller with version and health check endpoints
All checks were successful
Build (develop) / Promote (main) / build-and-push-deploy (push) Successful in 1m33s

This commit is contained in:
2026-01-29 14:48:57 -03:00
parent 6523c5f520
commit a694af97c6

View File

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