Skip to content

Commit

Permalink
add friend serviceg
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwnloyblog committed Dec 11, 2024
1 parent c35f8d4 commit 0e75f4e
Show file tree
Hide file tree
Showing 11 changed files with 981 additions and 429 deletions.
19 changes: 19 additions & 0 deletions commons/pbdefines/appmessages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,25 @@ message BatchMuteUsersReq{
bool isDelete = 2;
}

//friend
message FriendIdsReq{
repeated string friendIds = 1;
}

message QryFriendsReq{
int64 limit = 1;
string offset = 2;
}

message QryFriendsResp{
repeated FriendMember items = 1;
string offset = 2;
}

message FriendMember{
string friendId = 1;
}

//group
message GroupInfo{
string groupId = 1;
Expand Down
Loading

0 comments on commit 0e75f4e

Please sign in to comment.