From fcb59b249355565ea453ab8e5b3ea8b8c79c05c2 Mon Sep 17 00:00:00 2001 From: Zomatree Date: Tue, 7 Sep 2021 15:50:56 +0100 Subject: [PATCH] remove comments --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 63e0c7a8..1578b9cc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -31,7 +31,6 @@ use rauth::{ }; use std::str::FromStr; use rocket_cors::AllowedOrigins; -// use rocket::catchers; use util::variables::{ APP_URL, HCAPTCHA_KEY, INVITE_ONLY, PUBLIC_URL, SMTP_FROM, SMTP_HOST, SMTP_PASSWORD, SMTP_USERNAME, USE_EMAIL, USE_HCAPTCHA, @@ -149,7 +148,6 @@ Reset your password here: {{url}}", .manage(cors.clone()) .manage(RatelimitState::new()) .attach(cors) - // .register("/", catchers![rocket_governor::rocket_governor_catcher]) .launch() .await .unwrap();