evento-store 0.10.2

A collection of libraries and tools that help you build DDD, CQRS, and event sourcing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]

mod aggregate;
mod engine;
mod error;
mod store;

pub use aggregate::*;
pub use engine::*;
pub use error::*;
pub use evento_query::{Cursor, CursorType};
pub use store::*;