package ml.docilealligator.infinityforreddit.apis; import retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Url; public interface TitleSuggestion { @GET() Call getHtml(@Url String url); }