1#[crate::async_trait] 2pub trait SeederTrait { 3 async fn run<'a>(&'a self, db: &'a crate::sql::AnyPool) -> Result<(), crate::sql::Error>; 4}