(cmd *cobra.Command, value interface{}, options []string, defaultValue *string)
| 86 | } |
| 87 | |
| 88 | func (f *Flag) SelectU(cmd *cobra.Command, value interface{}, options []string, defaultValue *string) error { |
| 89 | return selectFlag(cmd, f, value, options, defaultValue, true) |
| 90 | } |
| 91 | |
| 92 | func (f *Flag) Pick(cmd *cobra.Command, result *string, fn pickerOptionsFunc) error { |
| 93 | return pickFlag(cmd, f, result, fn, false) |
no test coverage detected