aboutsummaryrefslogtreecommitdiff
path: root/hotline/stats.go
blob: bc06a6915776b6ed36bc86917fe256066046a71e (plain)
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
}