Mitgliederladen/backend/openapi.json

20 lines
375 B
JSON
Raw Normal View History

2023-07-19 11:02:28 +02:00
{
"openapi": "3.0.0",
"info": {
"title": "My API",
"version": "1.0"
},
"paths": {
"/example": {
"get": {
"summary": "Get example",
"responses": {
"200": {
"description": "OK"
}
}
}
}
}
}