(ctx context.Context, UserID int64)
| 52 | } |
| 53 | |
| 54 | func (r *relationService) GetFolloweeCount(ctx context.Context, UserID int64) (int64, error) { |
| 55 | return r.repo.GetFolloweeCount(ctx, UserID) |
| 56 | } |
| 57 | |
| 58 | func (r *relationService) GetFollowerCount(ctx context.Context, UserID int64) (int64, error) { |
| 59 | return r.repo.GetFollowerCount(ctx, UserID) |
nothing calls this directly
no test coverage detected