Adding more code to the syncers module

This commit is contained in:
kdeng00
2024-05-12 16:06:10 -04:00
parent bf2d760aa4
commit aab17f6f3c
6 changed files with 148 additions and 15 deletions
+11
View File
@@ -12,4 +12,15 @@ impl Default for Download {
api: models::api::API::default(),
}
}
}
impl Download {
pub async fn download_song(&self, token: &models::token::Token) {
}
fn retrieve_url(&self) -> String {
let mut url: String = String::new();
return url;
}
}