Executor will dispatch and execute task from channel.
| 31 | |
| 32 | // Executor will dispatch and execute task from channel. |
| 33 | type Executor interface { |
| 34 | Execute(Task) error |
| 35 | } |
| 36 | |
| 37 | // Task is an alias of model.Task |
| 38 | type Task = model.Task |
no outgoing calls
no test coverage detected