variant-config 0.1.4

variant config
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug, Clone)]
pub struct VariantConfigStoreConfig {
    pub condition_path: String,
    pub value_path: String,
}

impl Default for VariantConfigStoreConfig {
    fn default() -> Self {
        Self {
            condition_path: "if".to_owned(),
            value_path: "value".to_owned(),
        }
    }
}