(f *cmdutil.Factory)
| 254 | } |
| 255 | |
| 256 | func newPrompter(f *cmdutil.Factory) prompter.Prompter { |
| 257 | editor, _ := cmdutil.DetermineEditor(f.Config) |
| 258 | io := f.IOStreams |
| 259 | return prompter.New(editor, io) |
| 260 | } |
| 261 | |
| 262 | func branchFunc(f *cmdutil.Factory) func() (string, error) { |
| 263 | return func() (string, error) { |
no test coverage detected