pub trait ConfigStore {
// Required methods
fn config_get(&self, key: &str) -> Result<Option<String>, DbError>;
fn config_set(&self, key: &str, value: &str) -> Result<(), DbError>;
fn config_list(&self) -> Result<Vec<Config>, DbError>;
}Expand description
Shared config operations used by multiple modules.