diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-11T10·17+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-11T10·17+0200 |
commit | fe7e5e48b5702a0547b3008e06a1f0c04d88e3bf (patch) | |
tree | 5db3bf1889e0c0d5c3f384e9937cc7e0913b4689 /src/main.rs | |
parent | 4eb0a57177b82c9d2fc65b610a77bb9fd3226693 (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.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index d748be64f945..72bc5e00e897 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::*; |