Skip to content

Commit

Permalink
feat: API 버전 관리를 위한 v1 엔드포인트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yechan-kim committed Sep 10, 2024
1 parent 422ed17 commit a89a57a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


@RestController
@RequestMapping("/admin")
@RequestMapping("v1/admin")
@RequiredArgsConstructor
public class AdminController {
private final AdminRegister adminRegister;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.io.IOException;

@RestController
@RequestMapping("/character")
@RequestMapping("v1/character")
@RequiredArgsConstructor
public class CharacterController {

Expand Down

0 comments on commit a89a57a

Please sign in to comment.