diff --git a/backend/src/app.controller.ts b/backend/src/app.controller.ts index cce879e..c806716 100644 --- a/backend/src/app.controller.ts +++ b/backend/src/app.controller.ts @@ -1,7 +1,7 @@ import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; -@Controller() +@Controller('api/v2') export class AppController { constructor(private readonly appService: AppService) {}