chore: Update health check endpoint status message.
Deploy vendaweb-api / build-and-push-deploy (push) Successful in 3m7s Details

This commit is contained in:
joelson 2026-01-05 14:43:23 -03:00
parent a92fa77e37
commit e9c7d8d282
1 changed files with 2 additions and 2 deletions

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: 'ok' }; return { status: ':ok 2 ' };
} }
} }