(cmd *cobra.Command, value *string, defaultValue string)
| 122 | } |
| 123 | |
| 124 | func (f *Flag) RegisterString(cmd *cobra.Command, value *string, defaultValue string) { |
| 125 | registerString(cmd, f, value, defaultValue, false) |
| 126 | } |
| 127 | |
| 128 | func (f *Flag) RegisterStringU(cmd *cobra.Command, value *string, defaultValue string) { |
| 129 | registerString(cmd, f, value, defaultValue, true) |
no test coverage detected