Cargo formatting

This commit is contained in:
kdeng00
2024-05-05 15:59:55 -04:00
parent 33abb7b948
commit 72e6070946
22 changed files with 116 additions and 80 deletions
+3 -5
View File
@@ -1,10 +1,8 @@
use crate::models;
#[derive(Clone, Debug)]
pub struct Delete {
}
pub struct Delete {}
impl Delete {
pub fn delete_song(&self, token: &models::token::Token, song: &models::song::Song) {
}
}
pub fn delete_song(&self, token: &models::token::Token, song: &models::song::Song) {}
}
+1
View File
@@ -0,0 +1 @@
+1 -1
View File
@@ -2,4 +2,4 @@ pub mod delete;
pub mod download;
pub mod retrieve_records;
pub mod syncer_base;
pub mod upload;
pub mod upload;
+1
View File
@@ -0,0 +1 @@
+2 -4
View File
@@ -1,8 +1,6 @@
use crate::models;
struct Syncer {
}
struct Syncer {}
impl Syncer {
pub fn retrieve_url(api: &models::api::API, song: &models::song::Song) -> String {
@@ -16,4 +14,4 @@ impl Syncer {
return url;
}
}
}
+1
View File
@@ -0,0 +1 @@