user addable

This commit is contained in:
2022-12-03 15:06:32 +01:00
parent 3256c7f5fe
commit 5b95621d04
5 changed files with 41 additions and 12 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
use actix_web::web;
pub(crate) mod path;
mod users;
pub fn views_factory(app: &mut web::ServiceConfig) {
// auth::auth_factory(app);
// to_do::item_factory(app);
// app::app_factory(app);
// users::user_factory(app);
users::user_factory(app);
}