Skip to content

Instantly share code, notes, and snippets.

@othiagosouto
Last active June 17, 2022 16:22
Show Gist options
  • Save othiagosouto/b961d7067aa0faad91fddee8c24d96b0 to your computer and use it in GitHub Desktop.
Save othiagosouto/b961d7067aa0faad91fddee8c24d96b0 to your computer and use it in GitHub Desktop.
package br.com.tsouto.mvvmkotlinbreedsample.data
/**
* Created by tsouto on 28/03/18.
*/
class BreedRepository(private val dogCeoDataSource: BreedDataSource) : BreedDataSource {
override fun listAll(success: (List<Breed>) -> Unit, failure: () -> Unit) {
dogCeoDataSource.listAll(success, failure)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment