updated healthcheck to include name

This commit is contained in:
Joe Arndt 2026-02-23 22:40:17 -06:00
parent df6733caa9
commit d0337c5a67

View file

@ -4,6 +4,6 @@ import { Controller, Get } from '@nestjs/common';
export class HealthcheckController { export class HealthcheckController {
@Get('healthcheck') @Get('healthcheck')
health() { health() {
return { status: 'healthy' }; return { status: 'healthy', message: 'common-cents-api' };
} }
} }