mholt / json-to-go

Translates JSON into a Go type in your browser instantly (original)
https://mholt.github.io/json-to-go/
MIT License
4.51k stars 475 forks source link

type of element array #42

Closed gitchander closed 6 years ago

gitchander commented 6 years ago

json:

{ "float-array":[0.1, 2.4, 3] }

result:

type AutoGenerated struct { FloatArray []int json:"float-array" }