Modifica identificación de módulos y temas

This commit is contained in:
Manuel Cillero 2022-05-08 01:02:07 +02:00
parent 3366a6acdc
commit af9afca777
9 changed files with 49 additions and 21 deletions

View file

@ -1,9 +1,9 @@
use pagetop::prelude::*;
fn bootstrap() {
register_module(&pagetop_admin::Admin);
register_module(&pagetop_user::User);
register_module(&pagetop_node::Node);
include_module(&pagetop_admin::Admin);
include_module(&pagetop_user::User);
include_module(&pagetop_node::Node);
}
#[actix_web::main]