postgres_es/
types.rs

1use crate::PostgresEventRepository;
2use cqrs_es::persist::PersistedEventStore;
3use cqrs_es::CqrsFramework;
4
5/// A convenience type for a CqrsFramework backed by
6/// [PostgresStore](struct.PostgresStore.html).
7pub type PostgresCqrs<A> = CqrsFramework<A, PersistedEventStore<PostgresEventRepository, A>>;