mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-11-07 07:42:51 +00:00
10 lines
127 B
Go
10 lines
127 B
Go
|
|
package xray
|
||
|
|
|
||
|
|
type Traffic struct {
|
||
|
|
IsInbound bool
|
||
|
|
IsOutbound bool
|
||
|
|
Tag string
|
||
|
|
Up int64
|
||
|
|
Down int64
|
||
|
|
}
|