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
//! # aggregates
//!
//! A central location for `Aggregate` interfaces

pub use aggregate_context::AggregateContext;
pub use i_aggregate::IAggregate;

mod aggregate_context;
mod i_aggregate;