Download song (#65)

* Got download functionality working

* Updated readme

* Code formatting

* Updated help

* Version bump
This commit was merged in pull request #65.
This commit is contained in:
KD
2025-08-30 11:52:04 -04:00
committed by GitHub
parent 809f27cf01
commit ec0cbd7da0
7 changed files with 14 additions and 15 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ fn retrieve_url_reg(api: &models::api::Api) -> String {
}
fn retrieve_url_with_id(api: &models::api::Api, id: &uuid::Uuid) -> String {
let url = format!("{}/api/{}/{}/{}", api.url, api.version, api.endpoint, id);
let url = format!("{}api/{}/{}/{}", api.url, api.version, api.endpoint, id);
url
}