variant_config/
vc_config.rs

1#[derive(Debug, Clone)]
2pub struct VariantConfigStoreConfig {
3    pub condition_path: String,
4    pub value_path: String,
5}
6
7impl Default for VariantConfigStoreConfig {
8    fn default() -> Self {
9        Self {
10            condition_path: "if".to_owned(),
11            value_path: "value".to_owned(),
12        }
13    }
14}