File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
testing-movies-api/src/main/java/com/stacktips/movies/config Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change 11package com .stacktips .movies .config ;
22
3- import io .swagger .v3 .oas .models .ExternalDocumentation ;
43import io .swagger .v3 .oas .models .OpenAPI ;
54import io .swagger .v3 .oas .models .info .Info ;
6- import io .swagger .v3 .oas .models .info .License ;
75import org .springframework .context .annotation .Bean ;
86import org .springframework .context .annotation .Configuration ;
97
@@ -16,15 +14,9 @@ public OpenAPI openAPI() {
1614 Info apiInfo = new Info ().title ("Movies API" )
1715 .description ("RESTful API documentation for movies." )
1816 .version ("1.0" );
19- // .license(new License().name("Apache 2.0").url("http://stacktips.com"));
20-
2117
2218 return new OpenAPI ()
2319 .info (apiInfo );
24-
25- // .externalDocs(new ExternalDocumentation()
26- // .description("Movies API Wiki")
27- // .url("https://github.org/npanigrahy"));
2820 }
2921
3022}
You can’t perform that action at this time.
0 commit comments