- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
10 lines
234 B
Java
10 lines
234 B
Java
package com.ea.eadp.http.services;
|
|
|
|
import com.ea.eadp.http.models.HttpRequest;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface HttpService {
|
|
HttpRequest getResource(String str) throws IOException;
|
|
}
|