| 8 | ) |
| 9 | |
| 10 | type EmailCache interface { |
| 11 | GetVCode(ctx context.Context, email string) (string, error) |
| 12 | StoreVCode(ctx context.Context, email, vCode string) error |
| 13 | } |
| 14 | |
| 15 | type emailCache struct { |
| 16 | client redis.Cmdable |
nothing calls this directly
no outgoing calls
no test coverage detected