()
| 87 | } |
| 88 | |
| 89 | func (f *factory) IsPromptEnabled() bool { |
| 90 | return f.asker.IsInteractive() |
| 91 | } |
| 92 | |
| 93 | func (f *factory) Ask(p survey.Prompt, response interface{}, opts ...survey.AskOpt) error { |
| 94 | return f.asker.Ask(p, response, opts...) |
nothing calls this directly
no test coverage detected