operonx 0.6.2

High-performance Rust execution backend for Operon workflows
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;