mongo-es 0.4.1

A MongoDB implementation of the cqrs-es event store.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use crate::cqrs::*;
pub use crate::event_repository::*;
pub use crate::types::*;
pub use crate::view_repository::*;

mod cqrs;
mod error;
mod event_repository;
mod types;
mod utils;
mod view_repository;