eventsourcing 0.1.5

Event Sourcing for Rust
Documentation
1
2
3
4
5
6
7
8
//! Standard prelude for eventsourcing applications
pub use super::{Aggregate, AggregateState, Event, Kind};


#[cfg(feature = "orgeventstore")]
pub use super::CloudEvent;
#[cfg(feature = "orgeventstore")]
pub use crate::eventstore::EventStore;