esrs 0.18.0

A Prima.it-opinionated library to achieve cqrs/es
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod event;
pub mod migrations;
pub mod statements;

#[macro_export]
macro_rules! statement {
    ($file:expr, $ty:ty $(,)?) => {{
        format!(include_str!($file), format!("{}_events", <$ty>::NAME))
    }};
}