()
| 15 | } |
| 16 | |
| 17 | func NewConfirmFlags() *ConfirmFlags { |
| 18 | return &ConfirmFlags{ |
| 19 | Confirm: flag.New[bool](FlagConfirm, false), |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | func RegisterConfirmDeletionFlag(cmd *cobra.Command, value *bool, resourceDescription string) { |
| 24 | cmd.Flags().BoolVarP(value, FlagConfirm, "y", false, fmt.Sprintf("Don't ask for confirmation before deleting the %s.", resourceDescription)) |
no outgoing calls
no test coverage detected