Files
pedwfrontend/public/swagger.json
T
2023-03-01 15:47:55 +00:00

32 lines
617 B
JSON

{
"openapi": "3.0.0",
"info": {
"title": "Next Swagger API Example",
"version": "1.0"
},
"paths": {
"/api/endpoint/getlogin_api": {
"tags": "Hello",
"get": {
"description": "Returns the hello world",
"responses": {
"200": {
"description": "hello world"
}
}
}
},
"/api/endpoint/getlpa_api": {
"get": {
"description": "Returns the hello world",
"responses": {
"200": {
"description": "hello world"
}
}
}
}
},
"components": {},
"tags": []
}