♻️ Convierte initialize() y Application en async
`async_trait` se re-exporta desde `pagetop` y se añade al preludio; ya no es necesario declararlo como dependencia en las extensiones. `initialize()` es ahora verdaderamente `async` (con `.await`), y `Application::new()` y `prepare()` pasan también a ser funciones `async`.
This commit is contained in:
parent
54d5b3e53d
commit
8aa4372bdf
16 changed files with 159 additions and 107 deletions
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
pub use crate::PAGETOP_VERSION;
|
||||
|
||||
pub use crate::{builder_fn, html, main, test};
|
||||
pub use crate::{async_trait, builder_fn, html, main, test};
|
||||
|
||||
pub use crate::{AutoDefault, CowStr, Getters, StaticResources, UniqueId, Weight};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue