package xyz.adjutor.aniki.anime import retrofit2.Call import retrofit2.http.GET import retrofit2.http.Path interface AnimeApi { @GET("v3/anime/{id}") fun getAnimeData(@Path("id") id: String): Call }