memory_core/lib.rs
1pub mod autonomous;
2pub mod config;
3pub mod error;
4pub mod search;
5pub mod store;
6pub mod types;
7
8#[cfg(any(test, feature = "test-utils"))]
9pub mod test_utils;
10
11pub use config::Config;
12pub use error::{Error, Result};
13pub use store::schema::SCHEMA_VERSION;
14pub use store::Store;
15pub use store::memory::{make_preview, safe_truncate};
16pub use types::*;