Skip to content

Commit

Permalink
Deployment - Bug
Browse files Browse the repository at this point in the history
Deployment - Bug
  • Loading branch information
DDonghyeo authored May 29, 2024
2 parents a6c0538 + 627eaf9 commit 2b587dd
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
import io.swagger.v3.oas.models.info.License;
import io.swagger.v3.oas.models.security.SecurityRequirement;
import io.swagger.v3.oas.models.security.SecurityScheme;
import io.swagger.v3.oas.models.servers.Server;
Expand All @@ -17,7 +18,8 @@ public OpenAPI waitherAPI() {
Info info = new Info()
.title("Waither User API Docs")
.description("Waither User Service API 명세서입니다.")
.version("1.0.0");
.version("1.0.0")
.license(new License());

String jwtSchemeName = "accessToken";
// API 요청헤더에 인증정보 포함
Expand All @@ -38,3 +40,6 @@ public OpenAPI waitherAPI() {
.components(components);
}
}



0 comments on commit 2b587dd

Please sign in to comment.