Welcome to mirror list, hosted at ThFree Co, Russian Federation.

traffic.go « xray - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b907baecee6550467a495fabc0c3a2f8fb2252c (plain)
1
2
3
4
5
6
7
8
9
package xray

type Traffic struct {
	IsInbound  bool
	IsOutbound bool
	Tag        string
	Up         int64
	Down       int64
}