로그인 기능 추가

This commit is contained in:
2025-12-04 18:07:42 +09:00
parent 7deff52a53
commit 1dcc0fff6c
2 changed files with 14 additions and 18 deletions

View File

@@ -1,12 +1,16 @@
package com.kamco.cd.kamcoback.config;
//@Configuration
//@SecurityScheme(
// name = "BearerAuth",
// type = SecuritySchemeType.HTTP,
// scheme = "bearer",
// bearerFormat = "JWT"
//)
import io.swagger.v3.oas.annotations.enums.SecuritySchemeType;
import io.swagger.v3.oas.annotations.security.SecurityScheme;
import org.springframework.context.annotation.Configuration;
@Configuration
@SecurityScheme(
name = "BearerAuth",
type = SecuritySchemeType.HTTP,
scheme = "bearer",
bearerFormat = "JWT"
)
public class SwaggerConfig {
}