discord-jadx/app/src/main/java/okhttp3/Interceptor.java

19 lines
445 B
Java

package okhttp3;
import java.io.IOException;
/* compiled from: Interceptor.kt */
/* loaded from: classes3.dex */
public interface Interceptor {
public static final /* synthetic */ int a = 0;
/* compiled from: Interceptor.kt */
/* loaded from: classes3.dex */
public interface Chain {
Response a(Request request) throws IOException;
Request c();
}
Response intercept(Chain chain) throws IOException;
}