(response *agent.SyncResponse)
| 624 | } |
| 625 | |
| 626 | func Asegments(response *agent.SyncResponse) { |
| 627 | fmt.Println("local_segments:") |
| 628 | localSegments := response.GetLocalSegments() |
| 629 | for index, localSegment := range localSegments { |
| 630 | AJsonFormat(index+1, localSegment) |
| 631 | } |
| 632 | fmt.Println("remote_segments:") |
| 633 | remoteSegments := response.GetRemoteSegments() |
| 634 | for index, remoteSegment := range remoteSegments { |
| 635 | AJsonFormat(index+1, remoteSegment) |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | func Acontainers(response *agent.SyncResponse) { |
| 640 | fmt.Println("containers:") |
nothing calls this directly
no test coverage detected