1 2 3 4 5 6 7 8 9 10
package ml.docilealligator.infinityforreddit.apis; import retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Path; public interface StreamableAPI { @GET("videos/{shortcode}") Call<String> getStreamableData(@Path("shortcode") String shortCode); }