tsk-170: Saving changes

This commit is contained in:
kdeng00
2025-08-22 15:53:29 -04:00
parent 922a6b9a35
commit 594410cb12
4 changed files with 302 additions and 17 deletions
+4 -2
View File
@@ -55,10 +55,12 @@ pub mod init {
header::{ACCEPT, AUTHORIZATION, CONTENT_TYPE},
};
use crate::callers::song as song_caller;
#[derive(utoipa::OpenApi)]
#[openapi(
paths(crate::callers::song::endpoint::queue_song),
components(schemas(crate::callers::song::response::Response)),
paths(song_caller::endpoint::queue_song, song_caller::endpoint::link_user_id),
components(schemas(song_caller::response::Response, song_caller::response::link_user_id::Response)),
tags(
(name = "queue song", description = "Start process to upload song by queueing the song")
)