mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-12 18:01:51 +00:00
yggdrasilctl support
This commit is contained in:
parent
7954fa3c33
commit
d253bb750c
1 changed files with 11 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue