10 lines
218 B
Go
10 lines
218 B
Go
type Response struct {
|
|
Root struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Children []struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
} `json:"children"`
|
|
} `json:"root"`
|
|
} |