feat: add support to multiple params (#162)

This commit is contained in:
Davide Bianchi
2024-08-07 16:24:59 +02:00
committed by GitHub
parent 1802f29ad3
commit 3563d41c0f
5 changed files with 119 additions and 31 deletions

View File

@@ -57,6 +57,33 @@
}
}
}
},
"/files/{name}.{extension}": {
"get": {
"parameters": [
{
"in": "path",
"name": "extension",
"required": true,
"schema": {
"type": "string"
}
},
{
"in": "path",
"name": "name",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"default": {
"description": ""
}
}
}
}
}
}