cqrs-es2 0.8.0

A Rust library providing lightweight CQRS and event sourcing framework.
Documentation
1
2
3
4
5
6
7
8
9
//! # queries
//!
//! A central location for `Query` interfaces

pub use i_query::IQuery;
pub use query_context::QueryContext;

mod i_query;
mod query_context;