(cmd *cobra.Command, value *string, defaultValue string)
| 126 | } |
| 127 | |
| 128 | func (f *Flag) RegisterStringU(cmd *cobra.Command, value *string, defaultValue string) { |
| 129 | registerString(cmd, f, value, defaultValue, true) |
| 130 | } |
| 131 | |
| 132 | func (f *Flag) RegisterStringSlice(cmd *cobra.Command, value *[]string, defaultValue []string) { |
| 133 | registerStringSlice(cmd, f, value, defaultValue, false) |
no test coverage detected