start server

This commit is contained in:
Fran Jurmanović
2024-07-11 19:07:55 +02:00
parent 8307a60913
commit 475a2bb4c4
6 changed files with 83 additions and 3 deletions

View File

@@ -33,6 +33,24 @@ const docTemplate = `{
}
}
}
},
"post": {
"description": "Return API",
"tags": [
"api"
],
"summary": "Return API",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}

View File

@@ -22,6 +22,24 @@
}
}
}
},
"post": {
"description": "Return API",
"tags": [
"api"
],
"summary": "Return API",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}

View File

@@ -14,4 +14,16 @@ paths:
summary: Return API
tags:
- api
post:
description: Return API
responses:
"200":
description: OK
schema:
items:
type: string
type: array
summary: Return API
tags:
- api
swagger: "2.0"