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()) })