| 11 | ) |
| 12 | |
| 13 | type EmailRepository interface { |
| 14 | SendCode(ctx context.Context, email string) error |
| 15 | CheckCode(ctx context.Context, email, vCode string) (bool, error) |
| 16 | } |
| 17 | |
| 18 | // emailRepository 实现了 EmailRepository 接口 |
| 19 | type emailRepository struct { |
nothing calls this directly
no outgoing calls
no test coverage detected