(cmd *cobra.Command, value *int, defaultValue int)
| 146 | } |
| 147 | |
| 148 | func (f *Flag) RegisterInt(cmd *cobra.Command, value *int, defaultValue int) { |
| 149 | registerInt(cmd, f, value, defaultValue, false) |
| 150 | } |
| 151 | |
| 152 | func (f *Flag) RegisterIntU(cmd *cobra.Command, value *int, defaultValue int) { |
| 153 | registerInt(cmd, f, value, defaultValue, true) |
no test coverage detected