Created
August 22, 2022 08:46
-
-
Save aqua30/ccc7416d61f856a9b126c0ecd43d8b99 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 getAllUsers(): ApiResponse<List<User>> | |
suspend fun getUserById(id: Int): ApiResponse<User> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment