(cmd *cobra.Command, result *string, fn pickerOptionsFunc)
| 94 | } |
| 95 | |
| 96 | func (f *Flag) PickU(cmd *cobra.Command, result *string, fn pickerOptionsFunc) error { |
| 97 | return pickFlag(cmd, f, result, fn, true) |
| 98 | } |
| 99 | |
| 100 | func (f *Flag) PickMany(cmd *cobra.Command, result *[]string, fn pickerOptionsFunc) error { |
| 101 | return pickManyFlag(cmd, f, result, fn) |
nothing calls this directly
no test coverage detected