Created
February 12, 2019 15:30
-
-
Save wellingtoncosta/2d9362903fca557643908d1492121b90 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 UserRepository { | |
suspend fun getAll(): Deferred<List<User>> | |
suspend fun getByUsername(username: String): Deferred<User> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment