Skip to content

Commit

Permalink
feat(BE): AppController path prefix 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
eeseung committed May 23, 2024
1 parent 14de6fb commit 0a2884a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/app.controller.ts
Original file line number Diff line number Diff line change
@@ -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) {}

Expand Down

0 comments on commit 0a2884a

Please sign in to comment.