diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-13 22:10:45 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-13 22:10:45 +0100 |
commit | 4298b09bdbf2650130c03b753a6738911e1d45ef (patch) | |
tree | 326473c2cdb7f9399d6025ccb6e63b05d387e0a0 /src/main.rs | |
parent | 143ff63acd01300b23178a2a4c08ece78cc83bd2 (diff) | |
download | metamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar metamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar.bz2 metamuffin-website-4298b09bdbf2650130c03b753a6738911e1d45ef.tar.zst |
optional css
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, |