From 41efb1fb1594ee6da4f7121491e7b46417f49687 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 14 Jul 2025 19:33:58 -0400 Subject: [PATCH] Added missing message in the response --- src/callers/song.rs | 1 + 1 file changed, 1 insertion(+) 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))