(response *agent.SyncResponse)
| 605 | } |
| 606 | |
| 607 | func AskipInterface(response *agent.SyncResponse) { |
| 608 | fmt.Println("SkipInterface:") |
| 609 | for index, skipInterface := range response.GetSkipInterface() { |
| 610 | AJsonFormat(index+1, fmt.Sprintf("mac: %s", Uint64ToMac(skipInterface.GetMac()))) |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | func AGRPCCustomAppConfig(response *agent.SyncResponse) { |
| 615 | fmt.Println(string(response.GetCustomAppConfig().GetConfigs())) |
nothing calls this directly
no test coverage detected