Results 1 comments of Drew Richardson

Here's another example ```go package foo //go:generate ffjson foo.go type props struct { Series map[int][]*series `json:"series"` } type series struct { Name string `json:"name"` } ``` which after running `go...