(cmd *cobra.Command, value *bool, defaultValue bool)
| 158 | } |
| 159 | |
| 160 | func (f *Flag) RegisterBoolU(cmd *cobra.Command, value *bool, defaultValue bool) { |
| 161 | registerBool(cmd, f, value, defaultValue, true) |
| 162 | } |
| 163 | |
| 164 | func (f *Flag) RegisterIntSlice(cmd *cobra.Command, value *[]int, defaultValue []int) { |
| 165 | registerIntSlice(cmd, f, value, defaultValue, false) |
no test coverage detected