Open
Description
{
"test": {
"inline": 1
},
"world": {
"hi": {
"say": 1,
"age": 20
}
}
}
support look like:
type AutoGenerated struct {
Test Test `json:"test"`
World World `json:"world"`
}
type Test struct {
Inline int `json:"inline"`
}
type Hi struct {
Say int `json:"say"`
Age int `json:"age"`
}
type World struct {
Hi Hi `json:"hi"`
}