Skip to content

Instantly share code, notes, and snippets.

@wisnukurniawan
Created January 13, 2017 23:08
Show Gist options
  • Save wisnukurniawan/b62276ec9f9034cec0200ef465b4e475 to your computer and use it in GitHub Desktop.
Save wisnukurniawan/b62276ec9f9034cec0200ef465b4e475 to your computer and use it in GitHub Desktop.
/**
* Created by wisnu on 12/01/2017.
* Ini buat endpoint
*/
public interface ServiceApi {
@GET("/repos/{owner}/{repo}/contributors")
Call<List<DataRepo>> contributors(
@Path("owner") String owner,
@Path("repo") String repo
);
@GET("/search/repositories")
Call<DataSearch> searching(
@Query("q") String repoName,
@Query("sort") String sortBy
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment