type Base struct {
Affiliation string `json:"affiliation"`
Health float64 `json:"health"`
Tid *int `json:"tid"`
Name string `json:"-"`
Nickname string}
type Config struct {
// html.UnescapeString(pob.Base.Name) should be equal to this name BasesByHtmlUnescapeName map[string]*Base `json:"bases"`
BasesByNick map[string]*Base `json:"-"`
Timestamp time.Time `json:"-"`
Bases []*Base// contains filtered or unexported fields
}