stats.go

1package stats
2
3// Stats provides an interface that can be used to collect metrics about the server.
4type Stats interface {
5	Tui()
6	Push()
7	Fetch()
8}