Skip to content

Instantly share code, notes, and snippets.

@Wajahat-Jawaid
Created November 2, 2022 13:27
Show Gist options
  • Save Wajahat-Jawaid/241346dfbe4c7f11f2e8386961552409 to your computer and use it in GitHub Desktop.
Save Wajahat-Jawaid/241346dfbe4c7f11f2e8386961552409 to your computer and use it in GitHub Desktop.
interface FileRepository {
/**
* Get the files from whatever the directory provided
* */
suspend fun getJetFiles(parentFile: File): Result<List<JetFile>>
/**
* Observe the current favorites
*/
fun observeFavorites(): Flow<Set<String>>
/**
* Toggle a fileUri to be a favorite or not.
*/
suspend fun toggleFavorite(fileUri: String)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment