Skip to content

Instantly share code, notes, and snippets.

@passiondroid
Created April 6, 2018 12:02
Show Gist options
  • Save passiondroid/c046b9a89d7a238c0475291aa0956704 to your computer and use it in GitHub Desktop.
Save passiondroid/c046b9a89d7a238c0475291aa0956704 to your computer and use it in GitHub Desktop.
public interface MoviesService {
@GET("v2/movies/trending")
Observable<List<Movie>> getMovies();
@GET("v2/movies/{movieId}/casts")
Observable<List<Cast>> getCasts(@Path(movieId) String movieId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment