WithStderr sets the [Executor]'s standard error [io.Writer].
(stderr io.Writer)
| 582 | |
| 583 | // WithStderr sets the [Executor]'s standard error [io.Writer]. |
| 584 | func WithStderr(stderr io.Writer) ExecutorOption { |
| 585 | return &stderrOption{stderr} |
| 586 | } |
| 587 | |
| 588 | type stderrOption struct { |
| 589 | stderr io.Writer |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…