(cmd *cobra.Command, value interface{}, defaultValue *string)
| 58 | } |
| 59 | |
| 60 | func (f *Flag) AskMany(cmd *cobra.Command, value interface{}, defaultValue *string) error { |
| 61 | return askManyFlag(cmd, f, value, defaultValue, false) |
| 62 | } |
| 63 | |
| 64 | func (f *Flag) AskManyU(cmd *cobra.Command, value interface{}, defaultValue *string) error { |
| 65 | return askManyFlag(cmd, f, value, defaultValue, true) |
no test coverage detected