pub type KeyValue = KeyValue;
struct KeyValue { pub key: String, pub value: Option<String>, }
key: String
value: Option<String>