1//! In-memory cache adapter. 2 3mod cache; 4mod registration; 5 6pub use cache::MemoryCache; 7pub use registration::register_memory; 8 9#[cfg(test)] 10mod tests;