(cmd *cobra.Command, value *bool, defaultValue bool)
| 154 | } |
| 155 | |
| 156 | func (f *Flag) RegisterBool(cmd *cobra.Command, value *bool, defaultValue bool) { |
| 157 | registerBool(cmd, f, value, defaultValue, false) |
| 158 | } |
| 159 | |
| 160 | func (f *Flag) RegisterBoolU(cmd *cobra.Command, value *bool, defaultValue bool) { |
| 161 | registerBool(cmd, f, value, defaultValue, true) |
no test coverage detected