WithStdout sets the [Executor]'s standard output [io.Writer].
(stdout io.Writer)
| 569 | |
| 570 | // WithStdout sets the [Executor]'s standard output [io.Writer]. |
| 571 | func WithStdout(stdout io.Writer) ExecutorOption { |
| 572 | return &stdoutOption{stdout} |
| 573 | } |
| 574 | |
| 575 | type stdoutOption struct { |
| 576 | stdout io.Writer |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…