Skip to content

Instantly share code, notes, and snippets.

@ar-android
Created October 15, 2017 02:02
Show Gist options
  • Save ar-android/486d3b2c50c650ac6aef92cf3a02af88 to your computer and use it in GitHub Desktop.
Save ar-android/486d3b2c50c650ac6aef92cf3a02af88 to your computer and use it in GitHub Desktop.
object JadwalSholatRepository{
suspend fun getAllCity(): List<City>
= JadwalSholatApi.service.getAllCity().await()
suspend fun getJadwalByCityId(cityId: String)
= JadwalSholatApi.service.getJadwalByCityId(cityId).await()
suspend fun getJadwalDefault()
= JadwalSholatApi.service.getDefaultJadwal().await()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment