Dependency name change (#103)
sidm / build (push) Successful in 1m36s

Reviewed-on: #103
This commit was merged in pull request #103.
This commit is contained in:
2026-07-16 13:47:33 -04:00
parent 592c5aaf60
commit 68c0b06280
13 changed files with 144 additions and 146 deletions
+3 -3
View File
@@ -13,7 +13,7 @@ mod response {
#[derive(Debug, serde::Deserialize)]
pub struct Response {
pub message: String,
pub data: Vec<icarus_models::song::Song>,
pub data: Vec<simodels::song::Song>,
}
}
}
@@ -21,8 +21,8 @@ mod response {
impl RetrieveRecords {
pub async fn get_all_songs(
&mut self,
token: &icarus_models::token::AccessToken,
) -> Result<Vec<icarus_models::song::Song>, Error> {
token: &simodels::token::AccessToken,
) -> Result<Vec<simodels::song::Song>, Error> {
self.api.endpoint = String::from("api/v2/song/all");
let url = format!("{}{}", self.api.url, self.api.endpoint);
let access_token = token.bearer_token();