Fetch next queued song (#125)

* Added code

* Got it working

* Added test and refactored test code

* Removed comment

* Cleanup

* Code formatting
This commit was merged in pull request #125.
This commit is contained in:
KD
2025-04-26 18:38:17 -04:00
committed by GitHub
parent fd41d25c4c
commit 8755276b48
3 changed files with 165 additions and 12 deletions
+1
View File
@@ -3,6 +3,7 @@ pub mod song;
pub mod endpoints {
pub const QUEUESONG: &str = "/api/v2/song/queue";
pub const QUEUESONGDATA: &str = "/api/v2/song/queue/{id}";
pub const NEXTQUEUESONG: &str = "/api/v2/song/queue/next";
pub const QUEUEMETADATA: &str = "/api/v2/song/metadata/queue";
}