blob: f1b51a4fbc9ee3b2a7778a247d0b9a0a552f682c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package xyz.adjutor.aniki.manga
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Path
interface MangaApi {
@GET("v3/manga/{id}")
fun getMangaData(@Path("id") id: String): Call<MangaResponse>
}
|