| 16 | ) |
| 17 | |
| 18 | type TaskProcessor interface { |
| 19 | Start() error |
| 20 | Shutdown() |
| 21 | ProcessTaskSendVerifyEmail(ctx context.Context, task *asynq.Task) error |
| 22 | } |
| 23 | |
| 24 | type RedisTaskProcessor struct { |
| 25 | server *asynq.Server |
no outgoing calls
no test coverage detected