Reorganized TODO comments
Some checks failed
Rust Build / Check (pull_request) Failing after 32s
Rust Build / Test Suite (pull_request) Failing after 35s
Rust Build / Rustfmt (pull_request) Failing after 25s
Rust Build / Clippy (pull_request) Failing after 33s
Rust Build / build (pull_request) Failing after 39s

This commit is contained in:
2025-06-26 18:54:43 -04:00
parent 8c44ddbd03
commit 4c1ee005e8
2 changed files with 7 additions and 5 deletions

View File

@@ -104,11 +104,6 @@ async fn process_song(api_url: &String, song_queue_id: &uuid::Uuid) -> Result<()
Ok(_) => { Ok(_) => {
let s_path = util::path_buf_to_string(&song_queue_path); let s_path = util::path_buf_to_string(&song_queue_path);
the_rest::update_queued_song(&s_path).await; 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) => { Err(err) => {
eprintln!("Error: {:?}", err); eprintln!("Error: {:?}", err);

View File

@@ -1,4 +1,11 @@
// TODO: Refactor this file when this app is functional // 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) { 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