sourcery_core/
lib.rs

1pub mod aggregate;
2pub mod codec;
3pub mod concurrency;
4pub mod event;
5pub mod projection;
6pub mod repository;
7pub mod snapshot;
8pub mod store;
9
10// Test utilities module: public when feature enabled, internal for crate tests
11#[cfg(feature = "test-util")]
12pub mod test;
13
14#[cfg(all(test, not(feature = "test-util")))]
15pub(crate) mod test;