pub trait DataProvider<Key, Value> { fn get(key: &Key) -> Option<Value>; }
A simple trait to provide data
Get data by key