WithIO sets the [Executor]'s standard input, output, and error to the same [io.ReadWriter].
(rw io.ReadWriter)
| 596 | // WithIO sets the [Executor]'s standard input, output, and error to the same |
| 597 | // [io.ReadWriter]. |
| 598 | func WithIO(rw io.ReadWriter) ExecutorOption { |
| 599 | return &ioOption{rw} |
| 600 | } |
| 601 | |
| 602 | type ioOption struct { |
| 603 | rw io.ReadWriter |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…