xtools
xtools copied to clipboard
bug: 在 json 转 go 时,不会合并 struct
{
"pod": [
{"memory": {"rss": 4,"availableBytes": 12}},
{"memory": {"rss": 4}}
]
}
out:
type AutoGenerated struct {
Pod []Pod `json:"pod"`
}
type Memory struct {
Rss int `json:"rss"`
AvailableBytes int `json:"availableBytes"`
}
type Memory0 struct {
Rss int `json:"rss"`
}
type Pod struct {
Memory Memory `json:"memory,omitempty"`
Memory0 Memory0 `json:"memory,omitempty"`
}
expected:
type AutoGenerated struct {
Pod []Pod `json:"pod"`
}
type Memory struct {
Rss int `json:"rss"`
AvailableBytes int `json:"availableBytes,omitempty"`
}
type Pod struct {
Memory Memory `json:"memory,omitempty"`
}