(args ...string)
| 70 | } |
| 71 | |
| 72 | func (c *cliConnection) CliCommand(args ...string) ([]string, error) { |
| 73 | return c.callCliCommand(false, args...) |
| 74 | } |
| 75 | |
| 76 | func (c *cliConnection) callCliCommand(silently bool, args ...string) ([]string, error) { |
| 77 | var ( |
nothing calls this directly
no test coverage detected