1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package hotline import ( "time" ) type Stats struct { CurrentlyConnected int DownloadsInProgress int UploadsInProgress int WaitingDownloads int ConnectionPeak int ConnectionCounter int DownloadCounter int UploadCounter int Since time.Time }