mongo-es 0.2.1

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

use crate::MongoEventRepository;

pub use mongodb::Client;

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