diff --git a/src/main.rs b/src/main.rs index db26eb6..cd890ca 100644 --- a/src/main.rs +++ b/src/main.rs @@ -63,7 +63,6 @@ async fn wipe_data_from_queues(app_base_url: &String, song_queue_id: &uuid::Uuid Ok(response) => match response.json::().await { Ok(_resp) => { println!("Wiped data from song queue"); - println!("Resp: {_resp:?}"); Ok(()) } Err(err) => { diff --git a/src/the_rest.rs b/src/the_rest.rs index 3dda8e9..d3490fc 100644 --- a/src/the_rest.rs +++ b/src/the_rest.rs @@ -1,6 +1,5 @@ // TODO: Refactor this file when this app is functional -// TODO: Create song pub mod create_song { pub async fn create( base_url: &String, @@ -44,7 +43,6 @@ pub mod create_song { } } -// TODO: Create coverart pub mod create_coverart { pub async fn create( @@ -77,7 +75,6 @@ pub mod create_coverart { } pub mod wipe_data { - // TODO: Wipe data from queued song pub mod song_queue { pub async fn wipe_data(base_url: &String, song_queue_id: &uuid::Uuid) -> Result { let client = reqwest::Client::builder().build()?;