| 29 | ) |
| 30 | |
| 31 | type LabelsCommand struct { |
| 32 | BaseCommand |
| 33 | |
| 34 | RequiredArgs flag.LabelsArgs `positional-args:"yes"` |
| 35 | BuildpackStack string `long:"stack" short:"s" description:"Specify stack to disambiguate buildpacks with the same name"` |
| 36 | BuildpackLifecycle string `long:"lifecycle" short:"l" description:"Specify lifecycle to disambiguate buildpacks with the same name"` |
| 37 | relatedCommands interface{} `related_commands:"set-label, unset-label"` |
| 38 | ServiceBroker string `long:"broker" short:"b" description:"Specify a service broker to disambiguate service offerings or service plans with the same name."` |
| 39 | ServiceOffering string `long:"offering" short:"e" description:"Specify a service offering to disambiguate service plans with the same name."` |
| 40 | |
| 41 | username string |
| 42 | } |
| 43 | |
| 44 | func (cmd LabelsCommand) Execute(args []string) error { |
| 45 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected