1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 11:49:55 +00:00
catbase/bot/stats/stats.go

20 lines
257 B
Go
Raw Normal View History

2024-02-28 14:32:28 -05:00
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() time.Duration {
return time.Now().Sub(s.startTime)
}