Created
January 13, 2017 23:08
-
-
Save wisnukurniawan/b62276ec9f9034cec0200ef465b4e475 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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