mongo-es 0.1.0

A MongoDB implementation of the cqrs-es event store.
Documentation
1
2
3
4
5
use cqrs_es::{persist::PersistedEventStore, CqrsFramework};

use crate::MongoEventRepository;

pub type MongoCqrs<A> = CqrsFramework<A, PersistedEventStore<MongoEventRepository, A>>;