(cmd *cobra.Command, value *int, defaultValue *string)
| 74 | } |
| 75 | |
| 76 | func (f *Flag) AskInt(cmd *cobra.Command, value *int, defaultValue *string) error { |
| 77 | return askIntFlag(cmd, f, value, defaultValue, false) |
| 78 | } |
| 79 | |
| 80 | func (f *Flag) AskIntU(cmd *cobra.Command, value *int, defaultValue *string) error { |
| 81 | return askIntFlag(cmd, f, value, defaultValue, true) |
no test coverage detected