5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 16:09:36 +00:00

yggdrasilctl support

This commit is contained in:
Arceliar 2018-11-25 17:50:56 -06:00
parent 7954fa3c33
commit d253bb750c

View File

@ -296,6 +296,17 @@ func main() {
fmt.Println("-", v)
}
}
case "dhtping":
if _, ok := res["nodes"]; !ok {
fmt.Println("No nodes found")
} else if res["nodes"] == nil {
fmt.Println("No nodes found")
} else {
for _, v := range res["nodes"].([]interface{}) {
m := v.(map[string]interface{})
fmt.Println("-", m["key"], m["coords"])
}
}
default:
if json, err := json.MarshalIndent(recv["response"], "", " "); err == nil {
fmt.Println(string(json))