togo/_testdata/test.json.go
jolheiser e8a896fbac
Initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-04-08 23:58:22 -05:00

19 lines
341 B
Go

package testdata
type J struct {
ID string `json:"id" `
Type string `json:"type" `
Name string `json:"name" `
Ppu float64 `json:"ppu" `
Amount float64 `json:"amount" `
Batters Batters `json:"batters" `
}
type Batters struct {
Batter []Batter `json:"batter" `
}
type Batter struct {
Type string `json:"type" `
}