8 lines
141 B
Go
8 lines
141 B
Go
package cut_the_tree
|
|
|
|
type Node struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Children []*Node `json:"children"`
|
|
}
|