added prefix config

This commit is contained in:
Joe Arndt 2026-02-10 11:35:18 -06:00
parent a7ec0e3cde
commit 3f258bcd33
4 changed files with 12 additions and 13 deletions

View file

@ -2,7 +2,7 @@ import { Controller, Get } from '@nestjs/common';
@Controller()
export class AppController {
@Get('health')
@Get('healthcheck')
health() {
return { status: 'healthy' };
}