瀏覽代碼

add 删除好友

master
DengBiao 2 年之前
父節點
當前提交
cd0331385d
共有 1 個檔案被更改,包括 7 行新增0 行删除
  1. +7
    -0
      gim/logic.ext.proto

+ 7
- 0
gim/logic.ext.proto 查看文件

@@ -18,6 +18,8 @@ service LogicExt {
rpc AddFriend (AddFriendReq) returns (Empty);
// 同意添加好友
rpc AgreeAddFriend (AgreeAddFriendReq) returns (Empty);
// 删除好友
rpc DeleteFriend (DeleteFriendReq) returns (Empty);
// 设置好友信息
rpc SetFriend (SetFriendReq) returns (SetFriendResp);
// 获取好友列表
@@ -82,6 +84,11 @@ message AddFriendReq {
string description = 3; // 描述
}

message DeleteFriendReq {
int64 user_id = 1; // 用户id
}


message AgreeAddFriendReq {
int64 user_id = 1; // 用户id
string remarks = 2; // 备注


Loading…
取消
儲存