(args ...string)
| 66 | } |
| 67 | |
| 68 | func (c *cliConnection) CliCommandWithoutTerminalOutput(args ...string) ([]string, error) { |
| 69 | return c.callCliCommand(true, args...) |
| 70 | } |
| 71 | |
| 72 | func (c *cliConnection) CliCommand(args ...string) ([]string, error) { |
| 73 | return c.callCliCommand(false, args...) |
nothing calls this directly
no test coverage detected