Skip to content

Instantly share code, notes, and snippets.

@TranBaVinhSon
Created March 7, 2018 14:02
Show Gist options
  • Save TranBaVinhSon/96ab9679630e85a939e3128fa219fce3 to your computer and use it in GitHub Desktop.
Save TranBaVinhSon/96ab9679630e85a939e3128fa219fce3 to your computer and use it in GitHub Desktop.
package com.example.sontbv.retrofittutorial.webservice;
import com.example.sontbv.retrofittutorial.model.Movie;
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
/**
* Created by sontbv on 3/7/18.
*/
public interface ApiInterface {
@GET("films")
Call<List<Movie>> getMovies();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment