(ctx context.Context, smsID, number string)
| 12 | |
| 13 | type SMSCache interface { |
| 14 | GetVCode(ctx context.Context, smsID, number string) (string, error) |
| 15 | StoreVCode(ctx context.Context, smsID, number string, vCode string) error |
| 16 | SetNX(ctx context.Context, number string, value interface{}, expiration time.Duration) (*redis.BoolCmd, error) |
| 17 | Exist(ctx context.Context, number string) bool |