Formatting

This commit is contained in:
kdeng00
2025-04-26 16:07:22 -04:00
parent 603852203e
commit 781d541fbe
2 changed files with 8 additions and 8 deletions
-1
View File
@@ -47,7 +47,6 @@ mod song_queue {
pub id: uuid::Uuid,
pub filename: String,
pub status: String,
// pub data: Vec<u8>,
}
pub async fn insert(
+2 -1
View File
@@ -307,7 +307,8 @@ mod tests {
.method(axum::http::Method::GET)
.uri(crate::callers::endpoints::NEXTQUEUESONG)
.header(axum::http::header::CONTENT_TYPE, "application/json")
.body(axum::body::Body::empty()).unwrap();
.body(axum::body::Body::empty())
.unwrap();
match app.clone().oneshot(fetch_req).await {
Ok(response) => {