-
Notifications
You must be signed in to change notification settings - Fork 71
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
);
All contributes are welcome.