diff --git a/src/callers/song.rs b/src/callers/song.rs index 6a2ac02..c88180e 100644 --- a/src/callers/song.rs +++ b/src/callers/song.rs @@ -805,6 +805,7 @@ pub mod endpoint { Ok((date_created, id)) => { song.id = id; song.date_created = date_created; + response.message = String::from("Successful"); response.data.push(song); (axum::http::StatusCode::OK, axum::Json(response))