An ExecutorOption is any type that can apply a configuration to an [Executor].
| 20 | // An ExecutorOption is any type that can apply a configuration to an |
| 21 | // [Executor]. |
| 22 | ExecutorOption interface { |
| 23 | ApplyToExecutor(*Executor) |
| 24 | } |
| 25 | // An Executor is used for processing Taskfile(s) and executing the task(s) |
| 26 | // within them. |
| 27 | Executor struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…