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