From 031b1b611ac6e1b5292624e1f50a37c96f10c02f Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Wed, 30 Apr 2025 21:42:33 -0400 Subject: [PATCH] Formatting --- src/callers/coverart.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/callers/coverart.rs b/src/callers/coverart.rs index a123adc..d70af9b 100644 --- a/src/callers/coverart.rs +++ b/src/callers/coverart.rs @@ -1,4 +1,3 @@ - pub mod response { #[derive(Debug, Default, serde::Deserialize, serde::Serialize)] pub struct Response { @@ -6,14 +5,15 @@ pub mod response { } } - pub mod endpoint { // TODO: Implement this pub async fn queue( axum::Extension(pool): axum::Extension, mut multipart: axum::extract::Multipart, - ) -> (axum::http::StatusCode, axum::Json) { - + ) -> ( + axum::http::StatusCode, + axum::Json, + ) { let response = super::response::Response::default(); while let Some(field) = multipart.next_field().await.unwrap() {