From f705c7fbb67c1564ea36c1e0afe9841611e9a43f Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 28 Jul 2025 15:02:32 -0400 Subject: [PATCH] Added initial code for downloading song endpoint --- src/callers/song.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/callers/song.rs b/src/callers/song.rs index ab175c3..f0ab49a 100644 --- a/src/callers/song.rs +++ b/src/callers/song.rs @@ -774,6 +774,11 @@ pub mod endpoint { } } + pub async fn download_song() + -> (axum::http::StatusCode, axum::response::Response) { + (axum::http::StatusCode::OK, axum::response::Response::default()) + } + pub async fn update_song_queue_status( axum::Extension(pool): axum::Extension, axum::Json(payload): axum::Json,