| 23 | } |
| 24 | |
| 25 | type CancelFollowUserReq struct { |
| 26 | FollowerID int64 `json:"followerId"` // 关注者 |
| 27 | FolloweeID int64 `json:"followeeId"` // 被关注者 |
| 28 | } |
| 29 | |
| 30 | type GetFolloweeCountReq struct { |
| 31 | UserID int64 `json:"userId"` |
nothing calls this directly
no outgoing calls
no test coverage detected