blob: b760233186223237afb3582d165591f0fd703db9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package xyz.adjutor.aniki
import retrofit2.http.GET
import retrofit2.Call
interface TopMangaApi {
@GET("v3/top/manga")
fun getTopMangaData(): Call<RestTopMangaResponse>
}
|