Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created May 7, 2024 13:12
Show Gist options
  • Save MkhytarMkhoian/4780b4662245406fefbdbb6b2de58230 to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/4780b4662245406fefbdbb6b2de58230 to your computer and use it in GitHub Desktop.
class UserRemoteDataSource(
private val userApi: UserApi,
) {
suspend fun getUsers(): List<UserDTO> {
try {
return userApi.getUsers()
} catch (e: Exception) {
throw ApiException("Failed to get users", e)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment