bdawg.io
interface UserService { @GET("/users") Call<List<User>> getAll() @GET("{nextPathAndQuery}") Call<List<User>> getNextPage(@Path("nextPathAndQuery") pathAndQuery: String) }
trevjones