blob: 6b679b7168f2999ff8fb5d2b5b935e189e73f224 (
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.Query
import xyz.adjutor.aniki.presentation.model.response.SearchMangaResponse
interface SearchMangaApi {
@GET("v3/search/manga")
fun getSearchMangaData(@Query("q") q: String): Call<SearchMangaResponse>
}
|