``` interface DataSource<in Key : Any, Value : ...
# rx
z
Copy code
interface DataSource<in Key : Any, Value : Any> {
  fun get(key: Key): Single<Value>
}