(ctx context.Context, smsID, number, vCode string)
| 72 | } |
| 73 | |
| 74 | func (s *smsRepository) StoreVCode(ctx context.Context, smsID, number, vCode string) error { |
| 75 | return s.cache.StoreVCode(ctx, smsID, number, vCode) |
| 76 | } |
| 77 | |
| 78 | func (s *smsRepository) Exist(ctx context.Context, key string) bool { |
| 79 | return s.cache.Exist(ctx, key) |