add 2 acts to V2RaySocks (#516)

This commit is contained in:
thh1451
2023-11-10 14:23:44 +01:00
committed by GitHub
parent c04d52330d
commit 78c2e31bdf
2 changed files with 51 additions and 0 deletions

View File

@@ -5,3 +5,16 @@ type UserTraffic struct {
Upload int64 `json:"u"`
Download int64 `json:"d"`
}
type NodeStatus struct {
CPU string `json:"cpu"`
Mem string `json:"mem"`
Net string `json:"net"`
Disk string `json:"disk"`
Uptime int `json:"uptime"`
}
type NodeOnline struct {
UID int `json:"uid"`
IP string `json:"ip"`
}