parent
e0455950ad
commit
174a12a242
@ -0,0 +1,19 @@
|
|||||||
|
package com.trading_platform.config;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.models.OpenAPI;
|
||||||
|
import io.swagger.v3.oas.models.info.Info;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class OpenApiConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public OpenAPI customOpenAPI() {
|
||||||
|
return new OpenAPI()
|
||||||
|
.info(new Info()
|
||||||
|
.title("Trading Platform API 文档")
|
||||||
|
.description("swagger 文档 by 13")
|
||||||
|
.version("1.0."));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue