(ctx context.Context, userID string, num int)
| 134 | } |
| 135 | |
| 136 | func (us *UserCommon) UpdateAnswerCount(ctx context.Context, userID string, num int) error { |
| 137 | return us.userRepo.UpdateAnswerCount(ctx, userID, num) |
| 138 | } |
| 139 | |
| 140 | func (us *UserCommon) UpdateQuestionCount(ctx context.Context, userID string, num int64) error { |
| 141 | return us.userRepo.UpdateQuestionCount(ctx, userID, num) |
nothing calls this directly
no test coverage detected