diff --git a/packages/canyon-collect/src/app.controller.ts b/packages/canyon-collect/src/app.controller.ts index cce879ee..ada4478a 100644 --- a/packages/canyon-collect/src/app.controller.ts +++ b/packages/canyon-collect/src/app.controller.ts @@ -5,7 +5,7 @@ import { AppService } from './app.service'; export class AppController { constructor(private readonly appService: AppService) {} - @Get() + @Get('api/vi/health') getHello(): string { return this.appService.getHello(); }