evento-query 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
#![forbid(unsafe_code)]
mod cursor;
mod error;
mod query;

pub use cursor::{Cursor, CursorOrder, CursorType};
pub use error::QueryError;
pub use query::*;