diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 70646c3..da03c61 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,18 +4,18 @@ Copyright (C) 2023 metamuffin <metamuffin.org> */ pub mod blog; +pub mod error; pub mod layout; pub mod pages; pub mod source; pub mod wellknown; -pub mod error; use blog::*; +use error::*; use pages::*; use rocket::{catchers, fairing::AdHoc, http::Header, routes}; use source::*; use wellknown::*; -use error::*; #[tokio::main] async fn main() { @@ -39,6 +39,8 @@ async fn main() { r_blog_index, r_blog_article, r_blog_atom, + r_style, + r_toggle_css, r_wellknown_security, r_wellknown_matrix_server, r_wellknown_matrix_client, |