blob: 76c754fb2aaed6331ea9703aa34071e307195b4e (
plain) (
blame)
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.Url;
public interface TitleSuggestion {
@GET()
Call<String> getHtml(@Url String url);
}
|