From 4c1ee005e8f451f1b61bdda8c035e3b15539f2a4 Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 26 Jun 2025 18:54:43 -0400 Subject: [PATCH] Reorganized TODO comments --- src/main.rs | 5 ----- src/the_rest.rs | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index dff9769..db4147d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,11 +104,6 @@ async fn process_song(api_url: &String, song_queue_id: &uuid::Uuid) -> Result<() Ok(_) => { let s_path = util::path_buf_to_string(&song_queue_path); the_rest::update_queued_song(&s_path).await; - // TODO: Update the queued song with the updated queued song - // TODO: Create song - // TODO: Create coverart - // TODO: Wipe data from queued song - // TODO: Wipe data from queued coverart } Err(err) => { eprintln!("Error: {:?}", err); diff --git a/src/the_rest.rs b/src/the_rest.rs index 374fc31..5f5754d 100644 --- a/src/the_rest.rs +++ b/src/the_rest.rs @@ -1,4 +1,11 @@ // TODO: Refactor this file when this app is functional + +// TODO: Update the queued song with the updated queued song pub async fn update_queued_song(song_path: &String) { } + +// TODO: Create song +// TODO: Create coverart +// TODO: Wipe data from queued song +// TODO: Wipe data from queued coverart