18 lines
405 B
Java
18 lines
405 B
Java
package com.yutou.napcat.http;
|
|
|
|
import com.yutou.napcat.model.FriendBean;
|
|
import com.yutou.okhttp.BaseBean;
|
|
import com.yutou.okhttp.HttpBody;
|
|
import retrofit2.Call;
|
|
import retrofit2.http.Field;
|
|
import retrofit2.http.FormUrlEncoded;
|
|
import retrofit2.http.POST;
|
|
|
|
import java.util.List;
|
|
|
|
public interface FriendApi {
|
|
@POST("/get_friend_list")
|
|
Call<HttpBody<List<FriendBean>>> getFriendList(
|
|
);
|
|
}
|