Skip to content

Instantly share code, notes, and snippets.

@MaxMichel2
Created October 3, 2024 12:09
Show Gist options
  • Save MaxMichel2/71535b64c7789d56eb39daac1cff5f5c to your computer and use it in GitHub Desktop.
Save MaxMichel2/71535b64c7789d56eb39daac1cff5f5c to your computer and use it in GitHub Desktop.
interface TopicsRepository {
suspend fun getTopics(): DataResult<List<Topic>, TopicsRepositoryError>
suspend fun getTopic(id: String): Topic
sealed class TopicsRepositoryError {
data object NoTopics : TopicsRepositoryError()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment