Skip to content

Multiple end points

Orhan Obut edited this page Aug 9, 2015 · 2 revisions

You can use different endpoint url for some network calls, it will override the base url.

    @EndPoint("http://www.google.com")
    @GET("/users")
    void fetchUsers(
          Callback<List<User>> callback
    );
Clone this wiki locally