WithUpOutput sets additional stdout and stderr writers for logs during Up operations.
(stdout, stderr io.Writer)
| 126 | // WithUpOutput sets additional stdout and stderr writers for logs |
| 127 | // during Up operations. |
| 128 | func WithUpOutput(stdout, stderr io.Writer) DevcontainerCLIUpOptions { |
| 129 | return func(o *DevcontainerCLIUpConfig) { |
| 130 | o.Stdout = stdout |
| 131 | o.Stderr = stderr |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | // DevcontainerCLIExecOptions are options for the devcontainer CLI Exec |
| 136 | // command. |
no outgoing calls