Skip to content

Instantly share code, notes, and snippets.

@lukaszkalnik
Created June 18, 2020 15:36
Show Gist options
  • Save lukaszkalnik/fb4de305266cfcb418673a289f6284d7 to your computer and use it in GitHub Desktop.
Save lukaszkalnik/fb4de305266cfcb418673a289f6284d7 to your computer and use it in GitHub Desktop.
interface TmdbApi {
@GET("configuration")
suspend fun getConfiguration(): Either<ApiError, TmdbConfiguration>
@GET("movie/popular")
suspend fun getPopularMovies(
@Query("language") language: String,
@Query("page") page: Int,
@Query("region") region: String
): Either<ApiError, MoviesPage>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment