]> git.r.bdr.sh - rbdr/mobius/blob - hotline/stats.go
Remove user from Dockerfile
[rbdr/mobius] / hotline / stats.go
1 package hotline
2
3 import (
4 "sync"
5 "time"
6 )
7
8 type Stats struct {
9 CurrentlyConnected int
10 DownloadsInProgress int
11 UploadsInProgress int
12 WaitingDownloads int
13 ConnectionPeak int
14 ConnectionCounter int
15 DownloadCounter int
16 UploadCounter int
17 Since time.Time
18
19 sync.Mutex
20 }