-
-
Notifications
You must be signed in to change notification settings - Fork 491
Open
Description
This json
{
"description": "this is an array of [][]int",
"nested-array": [
[
0,
1,
2
],
[
2,
3,
4
]
]
}is converted to
type AutoGenerated struct {
Description string `json:"description"`
NestedArray []NestedArray[]int `json:"nested-array"`
}but it should be
type AutoGenerated struct {
Description string `json:"description"`
NestedArray [][]int `json:"nested-array"``mholt and meblum
Metadata
Metadata
Assignees
Labels
No labels