From 47e2fbc817acb3b46c381b5297cd26c7c4993ce9 Mon Sep 17 00:00:00 2001 From: tiero <3596602+tiero@users.noreply.github.com> Date: Wed, 18 Oct 2023 01:35:44 +0200 Subject: [PATCH] cargo fix --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 223fc46..0d21f9e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -98,7 +98,7 @@ async fn start_server(port: u16) { } async fn handle_transcription( - form: warp::multipart::FormData, + _form: warp::multipart::FormData, ) -> Result { // Handle the uploaded file and parameters from the multipart form. // For simplicity, I'm providing a placeholder response here.