pub fn sqlite_cqrs<A>(
pool: Pool<Sqlite>,
query_processor: Vec<Box<dyn Query<A>>>,
services: A::Services,
) -> SqliteCqrs<A>where
A: Aggregate,Expand description
A convenience function for creating a CqrsFramework from a database connection pool and queries.