(cmd *cobra.Command, result *string, fn pickerOptionsFunc)
| 90 | } |
| 91 | |
| 92 | func (f *Flag) Pick(cmd *cobra.Command, result *string, fn pickerOptionsFunc) error { |
| 93 | return pickFlag(cmd, f, result, fn, false) |
| 94 | } |
| 95 | |
| 96 | func (f *Flag) PickU(cmd *cobra.Command, result *string, fn pickerOptionsFunc) error { |
| 97 | return pickFlag(cmd, f, result, fn, true) |
no test coverage detected