(ctx context.Context, user *entity.User)
| 41 | |
| 42 | type UserRepo interface { |
| 43 | AddUser(ctx context.Context, user *entity.User) (err error) |
| 44 | IncreaseAnswerCount(ctx context.Context, userID string, amount int) (err error) |
| 45 | IncreaseQuestionCount(ctx context.Context, userID string, amount int) (err error) |
| 46 | UpdateQuestionCount(ctx context.Context, userID string, count int64) (err error) |
no outgoing calls