(cmd *cobra.Command, value interface{}, defaultValue *string)
| 50 | } |
| 51 | |
| 52 | func (f *Flag) Ask(cmd *cobra.Command, value interface{}, defaultValue *string) error { |
| 53 | return askFlag(cmd, f, value, defaultValue, false) |
| 54 | } |
| 55 | |
| 56 | func (f *Flag) AskU(cmd *cobra.Command, value interface{}, defaultValue *string) error { |
| 57 | return askFlag(cmd, f, value, defaultValue, true) |
no test coverage detected