Skip to content

Instantly share code, notes, and snippets.

@ngallazzi
Created January 8, 2021 15:01
Show Gist options
  • Save ngallazzi/eb95ff1f165ece085603f9244bbe8c04 to your computer and use it in GitHub Desktop.
Save ngallazzi/eb95ff1f165ece085603f9244bbe8c04 to your computer and use it in GitHub Desktop.
interface BooksRepository {
suspend fun getRemoteBooks(author: String): Result<List<Volume>>
suspend fun getBookmarks(): Flow<List<Volume>>
suspend fun bookmark(book: Volume)
suspend fun unbookmark(book: Volume)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment