Retrieve songs (#66)

* Able to retrieve songs

* Updated readme

* Removed unused import

* Code formatting

* Version bump
This commit was merged in pull request #66.
This commit is contained in:
KD
2025-08-30 12:10:03 -04:00
committed by GitHub
parent ec0cbd7da0
commit e109789b18
6 changed files with 26 additions and 11 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ pub fn retrieve_url(api: &models::api::Api, with_id: bool, id: &uuid::Uuid) -> S
}
fn retrieve_url_reg(api: &models::api::Api) -> String {
let url = format!("{}/api/{}/{}/", api.url, api.version, api.endpoint);
let url = format!("{}api/{}/{}/", api.url, api.version, api.endpoint);
url
}