We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f02c64 commit d8f0e6bCopy full SHA for d8f0e6b
src/contributors/GitHubService.kt
@@ -27,17 +27,6 @@ interface GitHubService {
27
@Path("owner") owner: String,
28
@Path("repo") repo: String
29
): Call<List<User>>
30
-
31
- @GET("orgs/{org}/repos?per_page=100")
32
- suspend fun getOrgRepos(
33
- @Path("org") org: String
34
- ): Response<List<Repo>>
35
36
- @GET("repos/{owner}/{repo}/contributors?per_page=100")
37
- suspend fun getRepoContributors(
38
- @Path("owner") owner: String,
39
- @Path("repo") repo: String
40
- ): Response<List<User>>
41
}
42
43
@JsonIgnoreProperties(ignoreUnknown = true)
0 commit comments