( message string, storage *string, defaultValue string, opts ...survey.AskOpt, )
| 69 | } |
| 70 | |
| 71 | func AskInputQuestion( |
| 72 | message string, |
| 73 | storage *string, |
| 74 | defaultValue string, |
| 75 | opts ...survey.AskOpt, |
| 76 | ) error { |
| 77 | return survey.AskOne(&survey.Input{ |
| 78 | Message: message, |
| 79 | Default: defaultValue, |
| 80 | }, storage, opts...) |
| 81 | } |
| 82 | |
| 83 | func AskInputQuestionWithSuggestion( |
| 84 | message string, |
no outgoing calls
no test coverage detected