()
| 19 | var Force bool |
| 20 | |
| 21 | func init() { |
| 22 | rootCmd.AddCommand(RemoveCmd) |
| 23 | RemoveCmd.Flags().BoolVarP(&Force, "Force", "F", false, "Force removal of installed packages") |
| 24 | } |
| 25 | |
| 26 | var RemoveCmd = &cobra.Command{ |
| 27 | Use: "uninstall [flags] packages...", |
nothing calls this directly
no outgoing calls
no test coverage detected