Skip to content

Instantly share code, notes, and snippets.

@BartoszJarocki
Created May 13, 2017 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BartoszJarocki/45b06439fee51d052592cc85b6ac96be to your computer and use it in GitHub Desktop.
Save BartoszJarocki/45b06439fee51d052592cc85b6ac96be to your computer and use it in GitHub Desktop.
public interface GithubApi {
@GET("/repos/{owner}/{repo}/contributors")
Observable<Response<List<ContributorJson>>> contributors(@Path("owner") String owner,
@Path("repo") String repo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment