9 LoginCount int `yaml:"login count"`
10 StartTime time.Time `yaml:"start time"`
11 Uptime time.Duration `yaml:"uptime"`
14 func (s *Stats) String() string {
21 d := time.Since(s.StartTime)
22 d = d.Round(time.Minute)
29 s.StartTime.Format(time.RFC1123Z),
30 fmt.Sprintf("%02d:%02d", h, m),