Skip to content

Instantly share code, notes, and snippets.

@tdcolvin
Last active June 27, 2023 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdcolvin/eca039d773ac715025c26dd1f15b8c5f to your computer and use it in GitHub Desktop.
Save tdcolvin/eca039d773ac715025c26dd1f15b8c5f to your computer and use it in GitHub Desktop.
interface LocalDataSource {
fun getPlanetsFlow(): Flow<WorkResult<List<Planet>>>
fun getPlanetFlow(planetId: String): Flow<WorkResult<Planet?>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment