Skip to content

Instantly share code, notes, and snippets.

@SabagRonen
Created January 13, 2018 19:41
Show Gist options
  • Save SabagRonen/be026412b6498b2e67707d2386da2ef1 to your computer and use it in GitHub Desktop.
Save SabagRonen/be026412b6498b2e67707d2386da2ef1 to your computer and use it in GitHub Desktop.
Clean Architecture and Kotlin Coroutines post plugins
interface Storage {
fun getUrlForKey(key: String) : String
}
interface ImageFetcher {
fun getImageFromUrl(url: String) : Bitmap
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment