CancelFollowUser 取消关注用户
(ctx context.Context, followerID, followeeID int64)
| 48 | |
| 49 | // CancelFollowUser 取消关注用户 |
| 50 | func (r *relationService) CancelFollowUser(ctx context.Context, followerID, followeeID int64) error { |
| 51 | return r.repo.CancelFollowUser(ctx, followerID, followeeID) |
| 52 | } |
| 53 | |
| 54 | func (r *relationService) GetFolloweeCount(ctx context.Context, UserID int64) (int64, error) { |
| 55 | return r.repo.GetFolloweeCount(ctx, UserID) |
nothing calls this directly
no test coverage detected