Skip to content

Instantly share code, notes, and snippets.

@Farhandroid
Created January 31, 2022 08:08
Show Gist options
  • Save Farhandroid/ed6522f10082d5a351891f9f9c386199 to your computer and use it in GitHub Desktop.
Save Farhandroid/ed6522f10082d5a351891f9f9c386199 to your computer and use it in GitHub Desktop.
interface MovieApi {
@GET("movie/popular")
suspend fun getPopularMovies(
@Query(
"api_key"
) apiKey: String
): Response<MovieList>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment