pub trait ConfigAccessor: Send {
// Required methods
fn config(&self) -> &Config;
fn is_verbose(&self) -> bool;
}Expand description
Trait for configuration access (ISP: clients only need config, not full Orchestrator).
pub trait ConfigAccessor: Send {
// Required methods
fn config(&self) -> &Config;
fn is_verbose(&self) -> bool;
}Trait for configuration access (ISP: clients only need config, not full Orchestrator).