1use bors::Serializable; 2 3pub fn make_serializable(key: String, value: String) -> Serializable { 4 Serializable { key, value } 5}