跳过导航链接

@EverythingIsNonNull

程序包 retrofit2

Retrofit turns your REST API into a Java interface.

请参阅: 说明

程序包retrofit2的说明

Retrofit turns your REST API into a Java interface.
 public interface GitHubService {
   @GET("/users/{user}/repos")
   List<Repo> listRepos(@Path("user") String user);
 }
 
跳过导航链接