package xyz.adjutor.aniki.data.anime import retrofit2.Call import retrofit2.http.GET import retrofit2.http.Query import xyz.adjutor.aniki.presentation.model.anime.SearchAnimeResponse interface SearchAnimeApi { @GET("v3/search/anime") fun getSearchAnimeData(@Query("q") q: String): Call }