(output []string)
| 33 | } |
| 34 | |
| 35 | func dumpOutput(output []string) { |
| 36 | fmt.Println("") |
| 37 | fmt.Println("---------- Command output from the plugin ----------") |
| 38 | for index, val := range output { |
| 39 | fmt.Print("#", index, " value: ", val) |
| 40 | } |
| 41 | fmt.Println("---------- FIN -----------") |
| 42 | } |
| 43 | |
| 44 | func (c *CoreCmd) Run(cliConnection plugin.CliConnection, args []string) { |
| 45 | if args[0] == "core-command" { |