mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
18 lines
542 B
Kotlin
18 lines
542 B
Kotlin
package com.github.libretube.api
|
|
|
|
import com.github.libretube.api.obj.Instances
|
|
import com.github.libretube.constants.GITHUB_API_URL
|
|
import com.github.libretube.constants.PIPED_INSTANCES_URL
|
|
import com.github.libretube.obj.update.UpdateInfo
|
|
import retrofit2.http.GET
|
|
|
|
interface ExternalApi {
|
|
// only for fetching servers list
|
|
@GET(PIPED_INSTANCES_URL)
|
|
suspend fun getInstances(): List<com.github.libretube.api.obj.Instances>
|
|
|
|
// fetch latest version info
|
|
@GET(GITHUB_API_URL)
|
|
suspend fun getUpdateInfo(): UpdateInfo
|
|
}
|