about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-11T10·17+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-11T10·17+0200
commitfe7e5e48b5702a0547b3008e06a1f0c04d88e3bf (patch)
tree5db3bf1889e0c0d5c3f384e9937cc7e0913b4689 /src/main.rs
parent4eb0a57177b82c9d2fc65b610a77bb9fd3226693 (diff)
feat(render): Add rendering actor
Adds a separate actor that handles page rendering, templating engine
state and other related topics.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d748be64f9..72bc5e00e8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,11 +27,12 @@ extern crate serde_json;
 extern crate url;
 extern crate url_serde;
 
-pub mod oidc;
 pub mod db;
 pub mod errors;
 pub mod handlers;
 pub mod models;
+pub mod oidc;
+pub mod render;
 pub mod schema;
 
 use actix::prelude::*;