Añade AutoDefault para derivar Default avanzado

This commit is contained in:
Manuel Cillero 2025-07-07 21:23:06 +02:00
parent bceb43e6d0
commit 3bb2355b4f
11 changed files with 303 additions and 8 deletions

View file

@ -32,7 +32,7 @@
// RE-EXPORTED *************************************************************************************
pub use pagetop_macros::{html, main, test};
pub use pagetop_macros::{html, main, test, AutoDefault};
// API *********************************************************************************************

View file

@ -4,6 +4,8 @@
pub use crate::{html, main, test};
pub use crate::AutoDefault;
// MACROS.
// crate::config

View file

@ -1,4 +1,4 @@
//! Gestión del servidor y servicios web ([Actix Web](https://docs.rs/actix-web)).
//! Gestión del servidor y servicios web (con [Actix Web](https://docs.rs/actix-web)).
pub use actix_web::body::BoxBody;
pub use actix_web::dev::Server;