mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-02 23:08:13 -05:00
5fd09079e3
fix old user limit info not clear fix some wrong names
11 lines
298 B
Go
11 lines
298 B
Go
package panel
|
|
|
|
type Panel interface {
|
|
GetNodeInfo() (nodeInfo *NodeInfo, err error)
|
|
GetUserList() (userList []UserInfo, err error)
|
|
ReportUserTraffic(userTraffic []UserTraffic) (err error)
|
|
Describe() ClientInfo
|
|
GetNodeRule() (ruleList []DetectRule, protocolList []string, err error)
|
|
Debug()
|
|
}
|