Pipe - aggregates prompt methods
| 89 | |
| 90 | // Pipe - aggregates prompt methods |
| 91 | type Pipe struct { |
| 92 | stdout io.Writer |
| 93 | stdin io.Reader |
| 94 | } |
| 95 | |
| 96 | // Confirm asks for yes or no input |
| 97 | func (u Pipe) Confirm(message string, defaultValue bool) (bool, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected