| 343 | } |
| 344 | |
| 345 | type surveyPrompter struct { |
| 346 | prompter *ghPrompter.Prompter |
| 347 | stdin ghPrompter.FileReader |
| 348 | stdout ghPrompter.FileWriter |
| 349 | stderr ghPrompter.FileWriter |
| 350 | editorCmd string |
| 351 | } |
| 352 | |
| 353 | func (p *surveyPrompter) Select(prompt, defaultValue string, options []string) (int, error) { |
| 354 | return p.prompter.Select(prompt, defaultValue, options) |
nothing calls this directly
no outgoing calls
no test coverage detected