1 public interface IService {
2
3 String BASE_URL = "https://api.test.com/";
4 String API_KEY = "SFSDF24242353434";
5
6 @GET("Search") //i.e https://api.test.com/Search?
7 Call<Products> getProducts(@Query("one") String one, @Query("two") String two,
8 @Query("key") String key)
9}
10