(ctx context.Context, userID, code, content string, duration time.Duration)
| 54 | // EmailRepo email repository |
| 55 | type EmailRepo interface { |
| 56 | SetCode(ctx context.Context, userID, code, content string, duration time.Duration) error |
| 57 | VerifyCode(ctx context.Context, code string) (content string, err error) |
| 58 | } |
| 59 |
no outgoing calls