From 56ad41d4a22ae805065a40e729eed1f72f49b59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Tue, 19 Jul 2022 09:07:25 +0200 Subject: [PATCH] s/Event::HTTP/Event::Http/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 93cf00b..e9650ad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,7 @@ async fn main() -> Result<(), Option<()>> { file, ).await; } - Event::HTTPUploadedFile(url) => { + Event::HttpUploadedFile(url) => { println!("URL: {}", url); client.disconnect().await.unwrap(); },