Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Last active May 7, 2024 13:12
Show Gist options
  • Select an option

  • Save MkhytarMkhoian/c90aef15a070bf2f8bdf690718b37df3 to your computer and use it in GitHub Desktop.

Select an option

Save MkhytarMkhoian/c90aef15a070bf2f8bdf690718b37df3 to your computer and use it in GitHub Desktop.
class UserRemoteDataSource(
private val userApi: UserApi,
) {
suspend fun getUsers(): List<UserDTO> = userApi.getUsers()
}
interface UserApi {
suspend fun getUsers(): List<UserDTO>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment