Skip to content

Commit

Permalink
修改GetIsFollowMap函数签名
Browse files Browse the repository at this point in the history
  • Loading branch information
Darley-Wey committed Feb 21, 2023
1 parent d3fec56 commit ca900ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kitex_server/relationservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ func VerifyFollowParam(myUid int64, targetUid int64, actionType int32) *string {
return nil
}

// TODO : .GetIsFollowSetByUserIdSet
func GetIsFollowSetByUserIdSet(idSet []int64) (isFollowSet []int64, err error) {
return []int64{}, nil
// TODO : .GetIsFollowMapByUserIdSet
func GetIsFollowMapByUserIdSet(uid int64, idSet []int64) (isFollowMap map[int64]bool, err error) {
return nil, nil
}

// kitex relationserver 数据传输 user -> kitex 回显 core.User
Expand Down

0 comments on commit ca900ee

Please sign in to comment.