WithStdin sets the [Executor]'s standard input [io.Reader].
(stdin io.Reader)
| 556 | |
| 557 | // WithStdin sets the [Executor]'s standard input [io.Reader]. |
| 558 | func WithStdin(stdin io.Reader) ExecutorOption { |
| 559 | return &stdinOption{stdin} |
| 560 | } |
| 561 | |
| 562 | type stdinOption struct { |
| 563 | stdin io.Reader |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…