]> git.r.bdr.sh - rbdr/mobius/blame - hotline/stats.go
Prevent account from creating new account with greater permission
[rbdr/mobius] / hotline / stats.go
CommitLineData
6988a057
JH
1package hotline
2
3import (
6988a057
JH
4 "time"
5)
6
7type Stats struct {
7cd900d6
JH
8 CurrentlyConnected int
9 DownloadsInProgress int
10 UploadsInProgress int
11 ConnectionPeak int
12 DownloadCounter int
13 UploadCounter int
6988a057 14
7cd900d6
JH
15 LoginCount int `yaml:"login count"`
16 StartTime time.Time `yaml:"start time"`
6988a057 17}