Skip to content

Instantly share code, notes, and snippets.

@herisulistiyanto
Created November 8, 2019 05:30
Show Gist options
  • Save herisulistiyanto/72617e9513012e6f3c0de39590a6455a to your computer and use it in GitHub Desktop.
Save herisulistiyanto/72617e9513012e6f3c0de39590a6455a to your computer and use it in GitHub Desktop.
interface MovieApiService {
@GET("/3/discover/movie")
suspend fun discoverAllMovies(): Response<MovieResponse>
@GET("/3/movie/{movieId}")
suspend fun getMovieDetail(@Path("movieId") movieId: Int): Response<MovieDetailResponse>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment