mirror of
https://github.com/JuLi0n21/pwa-player.git
synced 2026-04-19 15:30:05 +00:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"paths": {
|
|
"/api/v1/audio/{filepath}": {
|
|
"get": {
|
|
"summary": "Serve audio files (base64-encoded path)",
|
|
"parameters": [
|
|
{
|
|
"name": "filepath",
|
|
"in": "path",
|
|
"required": true,
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"description": "Base64-encoded file path"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Audio file content"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/api/v1/image/{filepath}": {
|
|
"get": {
|
|
"summary": "Serve image files (base64-encoded path)",
|
|
"parameters": [
|
|
{
|
|
"name": "filepath",
|
|
"in": "path",
|
|
"required": true,
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"description": "Base64-encoded file path"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Image file content"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|