feat: Perfect with rpc but no api (#747)

* feat: add get_group_member_user_id api

* feat: add SendBusinessNotification api

* feat: add GetFriendIDs api

* update pkg
This commit is contained in:
withchao
2023-08-02 10:41:34 +08:00
committed by GitHub
parent 31cd19af09
commit d9dbd739ab
5 changed files with 56 additions and 3 deletions
+4
View File
@@ -83,3 +83,7 @@ func (o *FriendApi) ImportFriends(c *gin.Context) {
func (o *FriendApi) IsFriend(c *gin.Context) {
a2r.Call(friend.FriendClient.IsFriend, o.Client, c)
}
func (o *FriendApi) GetFriendIDs(c *gin.Context) {
a2r.Call(friend.FriendClient.GetFriendIDs, o.Client, c)
}