(prompt string, defaultValue string)
| 37 | |
| 38 | type Prompt interface { |
| 39 | Input(prompt string, defaultValue string) (string, error) |
| 40 | Select(prompt string, defaultValue string, options []string) (int, error) |
| 41 | MarkdownEditor(prompt string, defaultValue string, blankAllowed bool) (string, error) |
| 42 | Confirm(prompt string, defaultValue bool) (bool, error) |
no outgoing calls
no test coverage detected