Skip to content

Instantly share code, notes, and snippets.

@lagoJin
Created December 28, 2019 05:59
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 lagoJin/65f99087d0b0d0b07cf8262106047799 to your computer and use it in GitHub Desktop.
Save lagoJin/65f99087d0b0d0b07cf8262106047799 to your computer and use it in GitHub Desktop.
interface GithubService {
@GET("search/users")
suspend fun getSearchUsers(
@Query("q") q: String,
@Query("page") page: Int,
@Query("per_page") perPage: Int
): DataEntityGithub
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment