allsource-core 0.19.1

High-performance event store core built in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod dto;
pub mod services;
pub mod use_cases;

// Allow ambiguous glob re-exports - both dto and services export some same-named types
// Users should import from the specific module if they need a particular version
#[allow(ambiguous_glob_reexports)]
pub use dto::*;
#[allow(ambiguous_glob_reexports)]
pub use services::*;
pub use use_cases::*;