package expo.modules.nekotest.Retrofit import okhttp3.ResponseBody; import retrofit2.Call; import retrofit2.http.* interface NKService { @GET("v2/cryptocurrencies/prices/latest") fun getCryptocurrencyLatestPrice() : Call @GET("v2/cryptocurrencies/{cryptocurrency_id}/chart") fun getCryptocurrencyChartPrice(@Path("cryptocurrency_id") cryptocurrency_id: String, @Query("type") type: String) : Call @GET("v2/d-apps") fun getDApps(@Header("Authorization") accessToken: String): Call }