(cmd *cobra.Command, value *int, defaultValue *string)
| 78 | } |
| 79 | |
| 80 | func (f *Flag) AskIntU(cmd *cobra.Command, value *int, defaultValue *string) error { |
| 81 | return askIntFlag(cmd, f, value, defaultValue, true) |
| 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) |
no test coverage detected