MeteoSystem/app/src/main/java/cc/pogoda/mobile/pogodacc/web/SummaryConsumer.java

14 wiersze
318 B
Java

package cc.pogoda.mobile.pogodacc.web;
import cc.pogoda.mobile.pogodacc.type.web.Summary;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface SummaryConsumer {
@GET("meteo_backend/summary/")
Call<Summary> getSummaryForStation(@Query("station")String station);
}