1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 19:51:42 +00:00
catbase/bot/stats/stats.go
2024-02-28 17:07:53 -05:00

20 lines
281 B
Go

package stats
import (
"time"
)
type Stats struct {
MessagesSent int
MessagesRcv int
startTime time.Time
}
func New() *Stats {
return &Stats{startTime: time.Now()}
}
func (s Stats) Uptime() string {
return time.Now().Sub(s.startTime).Truncate(time.Second).String()
}