1 2 3 4 5 6 7 8 9 10 11
//! Storage backends for the config registry. //! //! Mirrors Python `operonx/core/registry/storage/`. pub mod base; pub mod json; pub mod yaml; pub use base::{ConfigDict, ConfigStorage}; pub use json::JsonConfigStorage; pub use yaml::YamlConfigStorage;