示例#1
0
func emptyKeys(t *graphs.Tree) {
	t.PriKey = ""
	t.PubKey = ""
	for _, c := range t.Children {
		emptyKeys(c)
	}
}