feat: add GetSpecifiedBlacks interface. (#2656)

This commit is contained in:
Monet Lee
2024-09-25 10:19:25 +08:00
committed by GitHub
parent 7090c99fa5
commit 6006de4612
8 changed files with 120 additions and 22 deletions
+4
View File
@@ -72,6 +72,10 @@ func (o *FriendApi) GetPaginationBlacks(c *gin.Context) {
a2r.Call(relation.FriendClient.GetPaginationBlacks, o.Client, c)
}
func (o *FriendApi) GetSpecifiedBlacks(c *gin.Context) {
a2r.Call(relation.FriendClient.GetSpecifiedBlacks, o.Client, c)
}
func (o *FriendApi) RemoveBlack(c *gin.Context) {
a2r.Call(relation.FriendClient.RemoveBlack, o.Client, c)
}