LibreTube/app/src/main/java/com/github/libretube/api/ExternalApi.kt

18 lines
542 B
Kotlin
Raw Normal View History

2022-09-08 22:59:35 +05:30
package com.github.libretube.api
import com.github.libretube.constants.GITHUB_API_URL
import com.github.libretube.constants.PIPED_INSTANCES_URL
2022-09-20 23:23:34 +05:30
import com.github.libretube.api.obj.Instances
import com.github.libretube.obj.update.UpdateInfo
2022-09-08 22:59:35 +05:30
import retrofit2.http.GET
interface ExternalApi {
// only for fetching servers list
@GET(PIPED_INSTANCES_URL)
2022-09-20 23:23:34 +05:30
suspend fun getInstances(): List<com.github.libretube.api.obj.Instances>
2022-09-08 22:59:35 +05:30
// fetch latest version info
@GET(GITHUB_API_URL)
suspend fun getUpdateInfo(): UpdateInfo
}