(cmd *cobra.Command, value *[]string, defaultValue []string)
| 130 | } |
| 131 | |
| 132 | func (f *Flag) RegisterStringSlice(cmd *cobra.Command, value *[]string, defaultValue []string) { |
| 133 | registerStringSlice(cmd, f, value, defaultValue, false) |
| 134 | } |
| 135 | |
| 136 | func (f *Flag) RegisterStringSliceU(cmd *cobra.Command, value *[]string, defaultValue []string) { |
| 137 | registerStringSlice(cmd, f, value, defaultValue, true) |
no test coverage detected