Mitgliederladen/backend/openapi.json
2023-07-19 11:02:28 +02:00

19 lines
375 B
JSON

{
"openapi": "3.0.0",
"info": {
"title": "My API",
"version": "1.0"
},
"paths": {
"/example": {
"get": {
"summary": "Get example",
"responses": {
"200": {
"description": "OK"
}
}
}
}
}
}