Downloading song endpoint (#165)

* Added initial code for downloading song endpoint

* Finished download song endpoint

* Making download endpoint available

* Added test

* Code formatting

* Version bump
This commit was merged in pull request #165.
This commit is contained in:
KD
2025-07-28 16:40:14 -04:00
committed by GitHub
parent e98e055de0
commit 703fc49f32
5 changed files with 102 additions and 2 deletions
+1
View File
@@ -18,6 +18,7 @@ pub mod endpoints {
pub const CREATESONG: &str = "/api/v2/song";
pub const GETSONGS: &str = "/api/v2/song";
pub const STREAMSONG: &str = "/api/v2/song/stream/{id}";
pub const DOWNLOADSONG: &str = "/api/v2/song/download/{id}";
pub const CREATECOVERART: &str = "/api/v2/coverart";
pub const GETCOVERART: &str = "/api/v2/coverart";
}