1 2 3 4 5 6 7 8 9 10 11
package model type System struct { Factions []Faction `json:"factions"` SectorSymbol string `json:"sectorSymbol"` Symbol string `json:"symbol"` Type string `json:"type"` Waypoints []Waypoint `json:"waypoints"` X int `json:"x"` Y int `json:"y"` }