| 18 | } |
| 19 | |
| 20 | type FollowUserReq struct { |
| 21 | FollowerID int64 `json:"followerId"` // 关注者 |
| 22 | FolloweeID int64 `json:"followeeId"` // 被关注者 |
| 23 | } |
| 24 | |
| 25 | type CancelFollowUserReq struct { |
| 26 | FollowerID int64 `json:"followerId"` // 关注者 |
nothing calls this directly
no outgoing calls
no test coverage detected