(cmd *cobra.Command, value *string)
| 118 | } |
| 119 | |
| 120 | func (f *Flag) AskPasswordU(cmd *cobra.Command, value *string) error { |
| 121 | return askPasswordFlag(cmd, f, value, true) |
| 122 | } |
| 123 | |
| 124 | func (f *Flag) RegisterString(cmd *cobra.Command, value *string, defaultValue string) { |
| 125 | registerString(cmd, f, value, defaultValue, false) |
no test coverage detected