Skip to content

Instantly share code, notes, and snippets.

@javaherisaber
Created April 17, 2021 02:50
Show Gist options
  • Save javaherisaber/720009baf99ad0ad4b712b1298744558 to your computer and use it in GitHub Desktop.
Save javaherisaber/720009baf99ad0ad4b712b1298744558 to your computer and use it in GitHub Desktop.
Api to picsum
interface Api {
@Mock("picsum_list.json")
@GET("list")
fun getListOfPicsums(
@Query("page") page: Int,
@Query("limit") limit: Int
): Call<List<Picsum>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment