(prompt string, help string, options []string, response string)
| 53 | } |
| 54 | |
| 55 | func NewSelectPrompt(prompt string, help string, options []string, response string) *PA { |
| 56 | return &PA{ |
| 57 | Prompt: &survey.Select{ |
| 58 | Message: prompt, |
| 59 | Options: options, |
| 60 | Help: help, |
| 61 | }, |
| 62 | Answer: response, |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func NewSelectPromptWithDefault(prompt string, help string, options []string, def string, response string) *PA { |
| 67 | return &PA{ |
no outgoing calls