mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
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()
|
|
}
|