From 0a2884a7727804068c1bdbae0171da60e844145e Mon Sep 17 00:00:00 2001 From: eeseung Date: Thu, 23 May 2024 23:18:50 +0900 Subject: [PATCH] =?UTF-8?q?feat(BE):=20AppController=20path=20prefix=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {}