blob: c9bb53bcf0ecde36d5caf644ec68d8465d51a3fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package xyz.adjutor.aniki.data
import retrofit2.Call
import retrofit2.http.GET
import retrofit2.http.Path
import xyz.adjutor.aniki.presentation.model.response.TopMangaResponse
interface TopMangaApi {
@GET("v3/top/manga/{page}")
fun getTopMangaData(@Path("page") page: Int): Call<TopMangaResponse>
}
|