Last active
June 27, 2023 10:37
-
-
Save tdcolvin/8b6c2317086d396a421197897c44ac2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface LocalDataSource { | |
fun getPlanetsFlow(): Flow<WorkResult<List<Planet>>> | |
fun getPlanetFlow(planetId: String): Flow<WorkResult<Planet?>> | |
suspend fun setPlanets(planets: List<Planet>) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface RemoteDataSource { | |
suspend fun getPlanets(): List<Planet> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment