WithSilent tells the [Executor] to suppress all output except for the output of the tasks that are run.
(silent bool)
| 378 | // WithSilent tells the [Executor] to suppress all output except for the output |
| 379 | // of the tasks that are run. |
| 380 | func WithSilent(silent bool) ExecutorOption { |
| 381 | return &silentOption{silent} |
| 382 | } |
| 383 | |
| 384 | type silentOption struct { |
| 385 | silent bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…