![JAR search and dependency download from the Maven repository](/logo.png)
examples.GitHubService Maven / Gradle / Ivy
package examples;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
import java.util.List;
/**
* @author Julien Viet
*/
public interface GitHubService {
@GET("/repos/{owner}/repos")
Call> listRepos(@Path("user") String owner);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy