diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 85670c4..ebe217c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,16 +3,19 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2023 metamuffin <metamuffin.org> */ +#![feature(const_trait_impl)] pub mod blog; pub mod error; pub mod layout; pub mod pages; +pub mod projects; pub mod source; pub mod wellknown; use blog::*; use error::*; use pages::*; +use projects::*; use rocket::{catchers, fairing::AdHoc, fs::FileServer, http::Header, routes}; use source::*; use wellknown::*; |