WithSummary tells the [Executor] to output a summary of the given tasks instead of running them.
(summary bool)
| 458 | // WithSummary tells the [Executor] to output a summary of the given tasks |
| 459 | // instead of running them. |
| 460 | func WithSummary(summary bool) ExecutorOption { |
| 461 | return &summaryOption{summary} |
| 462 | } |
| 463 | |
| 464 | type summaryOption struct { |
| 465 | summary bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…