(message string, defaultValue bool)
| 31 | // UI - prompt user input |
| 32 | type UI interface { |
| 33 | Confirm(message string, defaultValue bool) (bool, error) |
| 34 | } |
| 35 | |
| 36 | func NewPrompt(stdin *streams.In, stdout *streams.Out) UI { |
no outgoing calls
no test coverage detected