use crate::value::AnyValue; mod instance; mod repository; mod user; pub struct ValueUpdate { pub object: String, pub value_name: String, pub value: AnyValue<()>, } #[allow(unused)] pub struct SettingUpdate { object: String, value_name: String, value: AnyValue<()>, } pub enum GiteratedUpdateKind { Instance, Repository, Value, }