package models type TrackerWeaponJSON struct { Weapons []Weapon `json:"weapons"` } type Weapon struct { Type string `json:"type"` Name string `json:"weaponName"` ID string `json:"id"` Kills int `json:"kills"` KPM float64 `json:"killsPerMinute"` ShotsFired int `json:"shotsFired"` ShotsHit int `json:"shotsHit"` Accuracy float64 `json:"-"` }