error pages

This commit is contained in:
realaravinth
2021-05-04 17:04:03 +05:30
parent 266b8dea88
commit 3ac95e1005
5 changed files with 142 additions and 41 deletions

View File

@@ -18,6 +18,7 @@
use actix_web::web::ServiceConfig;
mod auth;
pub mod errors;
mod panel;
pub mod routes;
@@ -26,6 +27,7 @@ pub const NAME: &str = "mCaptcha";
pub fn services(cfg: &mut ServiceConfig) {
auth::services(cfg);
panel::services(cfg);
errors::services(cfg);
}
#[cfg(not(tarpaulin_include))]