blob: 6ff1439bb1ea073772abedd5f5cf4c01be98a698 (
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.SearchAnimeResponse
interface SearchAnimeApi {
@GET("v3/search/anime")
fun getSearchAnimeData(@Query("q") q: String): Call<SearchAnimeResponse>
}
|