1 2 3 4 5 6 7
package model type Cargo struct { Capacity int `json:"capacity"` Inventory []Inventory `json:"inventory"` Units int `json:"units"` }