| 13 | } |
| 14 | |
| 15 | type UnsetLabelCommand struct { |
| 16 | BaseCommand |
| 17 | |
| 18 | RequiredArgs flag.UnsetLabelArgs `positional-args:"yes"` |
| 19 | relatedCommands interface{} `related_commands:"labels, set-label"` |
| 20 | BuildpackStack string `long:"stack" short:"s" description:"Specify stack to disambiguate buildpacks with the same name"` |
| 21 | ServiceBroker string `long:"broker" short:"b" description:"Specify a service broker to disambiguate service offerings or service plans with the same name."` |
| 22 | ServiceOffering string `long:"offering" short:"e" description:"Specify a service offering to disambiguate service plans with the same name."` |
| 23 | |
| 24 | LabelUnsetter LabelUnsetter |
| 25 | } |
| 26 | |
| 27 | func (cmd *UnsetLabelCommand) Setup(config command.Config, ui command.UI) error { |
| 28 | err := cmd.BaseCommand.Setup(config, ui) |
nothing calls this directly
no outgoing calls
no test coverage detected