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