Skip to content

Commit

Permalink
hotFix: swagger url 경로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed May 15, 2024
1 parent a8e2e7d commit 2a339e4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ public OpenAPI openAPI() {

private List<Server> getServers() {
return List.of(new Server()
.description("백엔드 api 서버")
.url("/")
.description("백엔드 api 서버")
);
}

private Info getInfo() {
return new Info()
.title("Roll The Dice API")
.description("요약된 뉴스를 AR로 재미있게 즐기는 서비스")
.title("Scoop API")
.description("ChatGPT기반, 생성형 AI로 요약한 뉴스 학습 어플")
.version("demo");
}

Expand Down

0 comments on commit 2a339e4

Please sign in to comment.