👽️ Apply last macro names changes

This commit is contained in:
Manuel Cillero 2023-10-27 09:20:07 +02:00
parent 5f366d3617
commit 238e92689a
16 changed files with 23 additions and 23 deletions

View file

@ -2,9 +2,9 @@ use pagetop::prelude::*;
new_handle!(THEME_BOOTSIER);
static_locales!(LOCALES_BOOTSIER);
new_static_locales!(LOCALES_BOOTSIER);
static_files!(bootsier);
new_static_files!(bootsier);
pub struct Bootsier;
@ -18,7 +18,7 @@ impl ModuleTrait for Bootsier {
}
fn configure_service(&self, scfg: &mut service::web::ServiceConfig) {
static_files_service!(scfg, "/bootsier", bootsier);
service_for_static_files!(scfg, "/bootsier", bootsier);
}
}