(ctx context.Context, key, captcha string)
| 32 | // CaptchaRepo captcha repository |
| 33 | type CaptchaRepo interface { |
| 34 | SetCaptcha(ctx context.Context, key, captcha string) (err error) |
| 35 | GetCaptcha(ctx context.Context, key string) (captcha string, err error) |
| 36 | DelCaptcha(ctx context.Context, key string) (err error) |
| 37 | SetActionType(ctx context.Context, unit, actionType, config string, amount int) (err error) |
no outgoing calls