// Uninstall unloads the definitions of the specified components. // After Uninstall, the components will be unavailable until Install is called. func (c *Client) Uninstall(argv []string) error { usage := `Unloads the definitions of the specified components. After uninstall, the components will be unavailable until install is called. Usage: deisctl uninstall [<target>...] [options] ` // parse command-line arguments args, err := docopt.Parse(usage, argv, true, "", false) if err != nil { return err } return cmd.Uninstall(args["<target>"].([]string), c.Backend) }
// Uninstall unloads the definitions of the specified components. // After Uninstall, the components will be unavailable until Install is called. func (c *Client) Uninstall(argv []string) error { return cmd.Uninstall(argv, c.Backend) }