🚧 Code tweaks

This commit is contained in:
Manuel Cillero 2024-04-13 19:43:47 +02:00
parent 5736b5d67b
commit 322cd9b6bf
6 changed files with 20 additions and 19 deletions

View file

@ -35,13 +35,13 @@ pub trait PackageTrait: AnyBase + Send + Sync {
actions![]
}
fn init(&self) {}
#[cfg(feature = "database")]
fn migrations(&self) -> Vec<MigrationItem> {
migrations![]
}
fn init(&self) {}
#[allow(unused_variables)]
fn configure_service(&self, scfg: &mut service::web::ServiceConfig) {}
}