All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.GitHubService Maven / Gradle / Ivy

package examples;

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;

import java.util.List;

/**
 * @author Julien Viet
 */
public interface GitHubService {
  @GET("/repos/{owner}/repos")
  Call> listRepos(@Path("user") String owner);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy