Skip to content

Instantly share code, notes, and snippets.

@Farhandroid
Created February 21, 2022 10:43
Show Gist options
  • Save Farhandroid/62f65b2d450f88e88cc05772b4216438 to your computer and use it in GitHub Desktop.
Save Farhandroid/62f65b2d450f88e88cc05772b4216438 to your computer and use it in GitHub Desktop.
ImageApiService
interface ImageApiService {
@GET("v1/search")
suspend fun getSearchedImage(
@Query("query")
searchQuery:String,
@Query("per_page")
page:Int
): Response<APIResponse>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment