(cmd *cobra.Command, value interface{}, options []string, defaultValue *string)
| 82 | } |
| 83 | |
| 84 | func (f *Flag) Select(cmd *cobra.Command, value interface{}, options []string, defaultValue *string) error { |
| 85 | return selectFlag(cmd, f, value, options, defaultValue, false) |
| 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) |
no test coverage detected