Files
trojan-go/api/server.go
T
2020-04-30 04:36:38 -04:00

25 lines
338 B
Go

package api
import (
"sync"
"github.com/p4gefau1t/trojan-go/stat"
)
type MemoryTraffic struct {
downloadTraffic uint64
uploadTraffic uint64
}
type MemoryUser struct {
password string
hash string
trafficTotal MemoryTraffic
trafficQuota MemoryTraffic
}
type APIAuth struct {
stat.Authenticator
users sync.Map
}