14 lines
399 B
Java
14 lines
399 B
Java
package com.kamco.cd.kamcoback.config;
|
|
|
|
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 {}
|