package main import ( "time" ) type Killmail struct { Id string `json:"id"` Hash string `json:"hash"` } type Wreck struct { Killmail Team string `json:"team"` } type Battle struct { Id string Date time.Time }