eventually_core/lib.rs
1//! Container for the fundamental types and abstraction to support Event Sourcing
2//! and Command-Query Responsibility Segregation patterns.
3//!
4//! ## Note
5//!
6//! Generally, you should not depend from this crate directly, but instead
7//! import the public crate: [`eventually`].
8//!
9//! Please refer to the public crate API documentation for more information.
10//!
11//! [`eventually`]: https://crates.io/crates/eventually
12
13pub mod aggregate;
14pub mod projection;
15pub mod repository;
16pub mod store;
17pub mod subscription;
18pub mod versioning;