Wipe data from song queue #35

Merged
phoenix merged 6 commits from wipe_data_from_song_queue into devel 2025-07-15 19:49:25 +00:00
2 changed files with 0 additions and 4 deletions
Showing only changes of commit 2750fa49d6 - Show all commits

View File

@@ -63,7 +63,6 @@ async fn wipe_data_from_queues(app_base_url: &String, song_queue_id: &uuid::Uuid
Ok(response) => match response.json::<the_rest::wipe_data::song_queue::response::Response>().await {
Ok(_resp) => {
println!("Wiped data from song queue");
println!("Resp: {_resp:?}");
Ok(())
}
Err(err) => {

View File

@@ -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<reqwest::Response, reqwest::Error> {
let client = reqwest::Client::builder().build()?;