Files
adif-api-reverse-engineering/apk_decompiled/sources/retrofit2/Callback.java

9 lines
191 B
Java

package retrofit2;
/* loaded from: classes3.dex */
public interface Callback<T> {
void onFailure(Call<T> call, Throwable th);
void onResponse(Call<T> call, Response<T> response);
}