(ctx context.Context, email string)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected