mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
25 lines
338 B
Go
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
|
|
}
|