blob: 028097ad4b5f376be885dc803fd56a75cd83310d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package xyz.adjutor.aniki.anime
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Path
interface AnimeApi {
@GET("v3/anime/{id}")
fun getAnimeData(@Path("id") id: String): Call<RestAnimeResponse>
}
|