Show outbound traffic in outbounds table (#1711)

* store outbound traffic in database

* show outbound traffic in outbounds table

* add refresh button
This commit is contained in:
Saeid
2024-01-30 00:07:20 +03:30
committed by GitHub
parent 9fbaede59f
commit 6c0775b120
9 changed files with 172 additions and 15 deletions
+5 -4
View File
@@ -1,8 +1,9 @@
package xray
type Traffic struct {
IsInbound bool
Tag string
Up int64
Down int64
IsInbound bool
IsOutbound bool
Tag string
Up int64
Down int64
}