Queue meta data (#121)

* Added migrations

Added new table to store metadata

* Updated table

* Added code for new endpoint

* Updated module

* Code formatting:

* Added test code

* Fixed test

* Cleanup

* Code refactor
This commit was merged in pull request #121.
This commit is contained in:
KD
2025-04-23 20:50:07 -04:00
committed by GitHub
parent 2823452198
commit f823a99984
4 changed files with 232 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
pub mod metadata;
pub mod song;
pub mod endpoints {
pub const QUEUESONG: &str = "/api/v2/song/queue";
pub const QUEUEMETADATA: &str = "/api/v2/song/metadata/queue";
}