Created
April 6, 2018 15:29
-
-
Save passiondroid/82b091624268d9b39662571f4bddc306 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface MoviesService { | |
@GET("v2/movies/trending") | |
Call<List<Movie>> getMovies(); | |
@GET("v2/movies/{movieId}/casts") | |
Call<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