(prompt string, help string, options []string, responses []string)
| 76 | } |
| 77 | |
| 78 | func NewMultiSelectPrompt(prompt string, help string, options []string, responses []string) *PA { |
| 79 | return &PA{ |
| 80 | Prompt: &survey.MultiSelect{ |
| 81 | Message: prompt, |
| 82 | Options: options, |
| 83 | Help: help, |
| 84 | }, |
| 85 | Answer: responses, |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | func NewMultiSelectWithAddPrompt(prompt string, help string, options []string, responses []string) *PA { |
| 90 | return &PA{ |
no outgoing calls