mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-23 20:11:12 +01:00
12 lines
282 B
Java
12 lines
282 B
Java
|
package app.revanced.twitch.api;
|
||
|
|
||
|
import okhttp3.ResponseBody;
|
||
|
import retrofit2.Call;
|
||
|
import retrofit2.http.GET;
|
||
|
import retrofit2.http.Url;
|
||
|
|
||
|
/* only used for service pings */
|
||
|
public interface PurpleAdblockApi {
|
||
|
@GET /* root */
|
||
|
Call<ResponseBody> ping(@Url String baseUrl);
|
||
|
}
|