| 9 | ) |
| 10 | |
| 11 | type ServiceKeysCommand struct { |
| 12 | BaseCommand |
| 13 | |
| 14 | RequiredArgs flag.ServiceInstance `positional-args:"yes"` |
| 15 | relatedCommands interface{} `related_commands:"delete-service-key"` |
| 16 | } |
| 17 | |
| 18 | func (cmd ServiceKeysCommand) Execute(args []string) error { |
| 19 | if err := cmd.SharedActor.CheckTarget(true, true); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected