Next queued song (#123)

* Added code to fetch next queue item

* Updated README

* Give it a go

* Minor docker compose change

* Added docker-compose defaults

* Code refactor

* Removed data from being fetched

* Added test

* Formatting
This commit was merged in pull request #123.
This commit is contained in:
KD
2025-04-26 16:11:46 -04:00
committed by GitHub
parent db7350b550
commit 5e3ca1861d
5 changed files with 172 additions and 4 deletions
+1
View File
@@ -3,5 +3,6 @@ pub mod song;
pub mod endpoints {
pub const QUEUESONG: &str = "/api/v2/song/queue";
pub const NEXTQUEUESONG: &str = "/api/v2/song/queue/next";
pub const QUEUEMETADATA: &str = "/api/v2/song/metadata/queue";
}