From 918ee2ec101e14cd2ab56b3af4934cf4dfea3b32 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Wed, 26 Jul 2023 10:17:53 +0800 Subject: [PATCH] new feat: sync designated model --- internal/api/friend.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/api/friend.go b/internal/api/friend.go index d3cda35f6..9b41cea6a 100644 --- a/internal/api/friend.go +++ b/internal/api/friend.go @@ -56,6 +56,10 @@ func (o *FriendApi) GetFriendList(c *gin.Context) { a2r.Call(friend.FriendClient.GetPaginationFriends, o.Client, c) } +func (o *FriendApi) GetDesignatedFriends(c *gin.Context) { + a2r.Call(friend.FriendClient.GetDesignatedFriends, o.Client, c) +} + func (o *FriendApi) SetFriendRemark(c *gin.Context) { a2r.Call(friend.FriendClient.SetFriendRemark, o.Client, c) }