https://github.com/mholt/json-to-go
https://www.sojson.com/json/json2go.html
`` [ { "example": { "from": { "json": true , "keys":[1,2,3,4],"structs":[{"a":"a","b":"2"}]} } }]
type AutoGenerated []struct {
Example struct {
From struct {
JSON bool json:"json"
Keys []int json:"keys"
Structs []struct {
A string json:"a"
B string json:"b"
} json:"structs"
} json:"from"
} json:"example"
}
``