diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-25 20:00:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-25 20:00:56 +0200 |
commit | 01bd18c75fd3652ce0b9eb76e23e967b0cba064b (patch) | |
tree | 3ed7e4145344681ed26d0a5945517c9de6964d32 /src/main.rs | |
parent | c68f2769ae13d1e4b250bd670d1d875014f5c05a (diff) | |
download | metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar.bz2 metamuffin-website-01bd18c75fd3652ce0b9eb76e23e967b0cba064b.tar.zst |
new project overview
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::*; |