1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package model type Ship struct { Cargo *Cargo `json:"cargo"` Cooldown *Cooldown `json:"cooldown"` //// crew //// engine //// frame Fuel *Fuel `json:"fuel"` //// modules //// mounts Nav *Nav `json:"nav"` //// reactor //registration: Registration; Symbol string `json:"symbol"` }