🔥 Elimina async innecesario (¿seguro?)

This commit is contained in:
Manuel Cillero 2022-11-08 21:25:44 +01:00
parent 65c290a240
commit bb6cb07603
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ pub struct Application {
}
impl Application {
pub async fn prepare(app: ModuleStaticRef) -> Result<Self, Error> {
pub fn prepare(app: ModuleStaticRef) -> Result<Self, Error> {
// Rótulo de presentación.
super::banner::print_on_startup();