summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index b1b5147..1857cfe 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -8,12 +8,14 @@ pub mod layout;
pub mod pages;
pub mod source;
pub mod wellknown;
+pub mod error;
use blog::*;
use pages::*;
use rocket::{catchers, fairing::AdHoc, http::Header, routes};
use source::*;
use wellknown::*;
+use error::*;
#[tokio::main]
async fn main() {
@@ -35,6 +37,7 @@ async fn main() {
r_source,
r_blog,
r_blog_index,
+ r_blog_article,
r_wellknown_security,
r_wellknown_matrix_server,
r_wellknown_matrix_client,