what-the-bank/sources/retrofit2/Callback.java

9 lines
190 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package retrofit2;
/* loaded from: classes.dex */
public interface Callback<T> {
void onFailure(Call<T> call, Throwable th);
void onResponse(Call<T> call, Response<T> response);
}