(cmd *cobra.Command, value *[]int, defaultValue []int)
| 162 | } |
| 163 | |
| 164 | func (f *Flag) RegisterIntSlice(cmd *cobra.Command, value *[]int, defaultValue []int) { |
| 165 | registerIntSlice(cmd, f, value, defaultValue, false) |
| 166 | } |
| 167 | |
| 168 | func (f *Flag) AskIntSlice(cmd *cobra.Command, value *[]int, defaultValue *[]int) error { |
| 169 | if shouldAsk(cmd, f, false) { |
no test coverage detected