[macros] Añade macro builder_fn

This commit is contained in:
Manuel Cillero 2025-07-12 12:04:37 +02:00
parent 34c4ac262f
commit c30c4cdf66
6 changed files with 161 additions and 8 deletions

View file

@ -32,7 +32,7 @@
// RE-EXPORTED *************************************************************************************
pub use pagetop_macros::{html, main, test, AutoDefault};
pub use pagetop_macros::{builder_fn, html, main, test, AutoDefault};
/// Representa un conjunto de recursos asociados a `$STATIC` en [`include_files!`].
pub type StaticResources = std::collections::HashMap<&'static str, static_files::Resource>;

View file

@ -2,7 +2,7 @@
// RE-EXPORTED.
pub use crate::{html, main, test};
pub use crate::{builder_fn, html, main, test};
pub use crate::{AutoDefault, StaticResources};