CmdOption is a function type for configuring exec.Cmd
func(*exec.Cmd)
| 17 | |
| 18 | // CmdOption is a function type for configuring exec.Cmd |
| 19 | type CmdOption func(*exec.Cmd) |
| 20 | |
| 21 | // WithStdin sets the stdin for the host command |
| 22 | func WithStdin(stdin io.Reader) CmdOption { |
nothing calls this directly
no outgoing calls
no test coverage detected