1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pub use context::{EventStoreAggregateContext, ViewContext};
pub use error::PersistenceError;
pub use event_store::PersistedEventStore;
pub use queries::GenericQuery;
pub use repository::{PersistedEventRepository, ViewRepository};
pub use serialized_event::{SerializedEvent, SerializedSnapshot};
pub use upcaster::{
EventUpcaster, SemanticVersion, SemanticVersionError, SemanticVersionEventUpcaster,
SemanticVersionEventUpcasterFunc,
};
mod context;
mod error;
mod event_store;
mod queries;
mod repository;
mod serialized_event;
mod upcaster;
#[doc(hidden)]
pub mod doc;