]>
Commit | Line | Data |
---|---|---|
1 | package hotline | |
2 | ||
3 | import ( | |
4 | "time" | |
5 | ) | |
6 | ||
7 | type Stats struct { | |
8 | CurrentlyConnected int | |
9 | DownloadsInProgress int | |
10 | UploadsInProgress int | |
11 | ConnectionPeak int | |
12 | DownloadCounter int | |
13 | UploadCounter int | |
14 | ||
15 | LoginCount int `yaml:"login count"` | |
16 | StartTime time.Time `yaml:"start time"` | |
17 | } |