diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 2cee694..74072ca 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ pub mod pages; pub mod wellknown; use pages::*; -use rocket::{catchers, fairing::AdHoc, fs::FileServer, http::Header, routes}; +use rocket::{catchers, fairing::AdHoc, http::Header, routes}; use wellknown::*; #[tokio::main] @@ -34,7 +34,7 @@ async fn main() { r_wellknown_matrix_client, ], ) - .mount("/", FileServer::from("modules")) + // .mount("/", FileServer::from("modules")) .register("/", catchers![r_catch]) .launch() .await |