From e3f9e36ffb2157a5fcbc3e9c52a2080d1e641c45 Mon Sep 17 00:00:00 2001 From: rascul Date: Wed, 22 Jun 2022 21:21:34 -0500 Subject: [PATCH] remote old commented line --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b2bb7c0..e9261a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -42,7 +42,6 @@ async fn main() -> std::io::Result<()> { .service(routes::help::get) .service(routes::index::get) .service(routes::submit::get) - //.route("/submit", web::post().to(routes::submit::post)) .service(routes::submit::post) .service(Files::new("/static", "static").show_files_listing()) })