package main import ( "time" ) type Killmail struct { Id uint64 `json:"id"` Hash string `json:"hash"` } type Team []uint32 type Battle struct { Id string `json:"-"` LastModified time.Time `json:"-"` Teams [2]Team `json:"teams"` Killmails []Killmail `json:"killmails"` Name string `json:"name"` } type EsiKillmail struct { SolarSystemId int32 `json:"solar_system_id"` Victim struct { Position struct { X float64 `json:"x"` Y float64 `json:"y"` Z float64 `json:"z"` } `json:"position"` } `json:"victim"` } type EsiUniverseSystem struct { Name string `json:"name"` }