blob: 52ca2ba13c6fa8ddd2a15c28f502c81f2972eac8 (
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<AnimeResponse>
}
|