1//! In-memory model registry implementation 2 3mod registry; 4mod traits_impl; 5 6#[cfg(test)] 7mod tests; 8 9pub use registry::InMemoryRegistry;