Back to project page Webby.
The source code is released under:
MIT License
If you think the Android project Webby listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.swampmobile.webby.examples.apis; //w w w . j a v a2 s . c o m import retrofit.client.Response; import retrofit.http.GET; /** * Example api interface that Retrofit will use to communicate with a server. Webby works * exclusively with Retrofit communication. */ public interface FeedzillaApi { public static final String FEEDZILLA_URL = "http://api.feedzilla.com"; @GET("/v1/categories.json") Response getCategories(); }