| 37 | } |
| 38 | |
| 39 | public interface GitHub { |
| 40 | @GET("/repos/{owner}/{repo}/contributors") |
| 41 | Call<List<Contributor>> contributors(@Path("owner") String owner, @Path("repo") String repo); |
| 42 | } |
| 43 | |
| 44 | public static void main(String... args) throws IOException { |
| 45 | // Create a very simple REST adapter which points the GitHub API. |
no outgoing calls
no test coverage detected
searching dependent graphs…