fix: update health check response to return version 3
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 1m59s

This commit is contained in:
2026-01-05 18:45:48 -05:00
parent a3021a545c
commit e2a008e9a9

View File

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