usecrate::PostgresEventRepository;usecqrs_es::persist::PersistedEventStore;usecqrs_es::CqrsFramework;/// A convenience type for a CqrsFramework backed by
/// [PostgresStore](struct.PostgresStore.html).
pubtypePostgresCqrs<A>=CqrsFramework<A, PersistedEventStore<PostgresEventRepository, A>>;