mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-10-13 11:39:13 +00:00
11 lines
270 B
Go
11 lines
270 B
Go
package xray
|
|
|
|
// Traffic represents network traffic statistics for Xray connections.
|
|
// It tracks upload and download bytes for inbound or outbound traffic.
|
|
type Traffic struct {
|
|
IsInbound bool
|
|
IsOutbound bool
|
|
Tag string
|
|
Up int64
|
|
Down int64
|
|
}
|