Downloading song endpoint #165

Merged
kdeng00 merged 6 commits from download_song into v0.2 2025-07-28 16:40:14 -04:00
Showing only changes of commit f705c7fbb6 - Show all commits
+5
View File
@@ -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<sqlx::PgPool>,
axum::Json(payload): axum::Json<super::request::update_status::Request>,