thalo_inmemory/
lib.rs

1//! An in memory implementation of [EventStore](thalo::event_store::EventStore).
2//!
3//! This is useful for testing, but is not recommended
4//! for production as the data does not persist to disk.
5//!
6//! Events are stored in a `Vec<EventRecord>`.
7
8#![deny(missing_docs)]
9
10pub use error::Error;
11pub use event_store::{EventRecord, InMemoryEventStore};
12
13mod error;
14mod event_store;