(ctx context.Context, userID string, num int64)
| 138 | } |
| 139 | |
| 140 | func (us *UserCommon) UpdateQuestionCount(ctx context.Context, userID string, num int64) error { |
| 141 | return us.userRepo.UpdateQuestionCount(ctx, userID, num) |
| 142 | } |
| 143 | |
| 144 | func (us *UserCommon) BatchUserBasicInfoByID(ctx context.Context, userIDs []string) (map[string]*schema.UserBasicInfo, error) { |
| 145 | userIDs = checker.FilterEmptyString(userIDs) |
nothing calls this directly
no test coverage detected