From fe7e5e48b5702a0547b3008e06a1f0c04d88e3bf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 11 Apr 2018 12:17:33 +0200 Subject: feat(render): Add rendering actor Adds a separate actor that handles page rendering, templating engine state and other related topics. --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') 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::*; -- cgit 1.4.1