Files
gswagger/testdata/subrouter.json
2023-03-05 21:12:34 +01:00

37 lines
568 B
JSON

{
"info": {
"title": "test swagger title",
"version": "test swagger version"
},
"openapi": "3.0.0",
"paths": {
"/foo": {
"get": {
"responses": {
"default": {
"description": ""
}
}
}
},
"/prefix/taz": {
"get": {
"responses": {
"default": {
"description": ""
}
}
}
},
"/prefix": {
"get": {
"responses": {
"default": {
"description": ""
}
}
}
}
}
}