cqrs-es2 0.10.0

A Rust library providing lightweight CQRS and event sourcing framework.
Documentation
1
2
3
4
5
6
7
8
9
//! # errors
//!
//! A central location for errors and error handling

pub use error::Error;
pub use user_error::UserError;

mod error;
mod user_error;