package xyz.adjutor.aniki.manga import retrofit2.Call import retrofit2.http.GET interface MangaApi { @GET("v3/manga/1") fun getMangaData(): Call }