package tracker type Tracker struct { peers map[string]string } func NewTracker() *Tracker { return &Tracker{ peers: make(map[string]string), } }