Skip to content

Instantly share code, notes, and snippets.

@communikein
Created January 15, 2018 15:49
Show Gist options
  • Save communikein/bfc04b7d4565a5226356c426a6b7c56c to your computer and use it in GitHub Desktop.
Save communikein/bfc04b7d4565a5226356c426a6b7c56c to your computer and use it in GitHub Desktop.
public interface Webservice {
@GET("/pois/{poi}")
Call<Poi> getPoi(@Path("poi") String poiId);
@GET("/pois")
Call<List<Poi>> getPois();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment