(response *agent.SyncResponse)
| 637 | } |
| 638 | |
| 639 | func Acontainers(response *agent.SyncResponse) { |
| 640 | fmt.Println("containers:") |
| 641 | containers := response.GetContainers() |
| 642 | for index, container := range containers { |
| 643 | AJsonFormat(index+1, container) |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | func Aplugin(cmd *cobra.Command) { |
| 648 | conn := agentGetConn(cmd) |
nothing calls this directly
no test coverage detected