1 2 3 4 5 6 7 8 9
//! # aggregates //! //! A central location for `Aggregate` interfaces pub use aggregate_context::AggregateContext; pub use i_aggregate::IAggregate; mod aggregate_context; mod i_aggregate;