Added TODO

This commit is contained in:
2025-07-15 15:08:22 -04:00
parent 4fee3ff1a6
commit abade4af1e

View File

@@ -24,7 +24,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
// TODO: Do something with the result later
match some_work(&app_base_url, &song_queue_id).await {
Ok(_) => {}
Ok((song, coverart, (song_queue_id, song_queue_path), (coverart_queue_id, coverart_queue_path))) => {
// TODO: Wipe data from song and coverart queues
// TODO: Cleanup files in local filesystem
}
Err(err) => {
eprintln!("Error: {err:?}");
}