mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 10:28:13 -05:00
10 lines
225 B
Go
10 lines
225 B
Go
|
package panel
|
||
|
|
||
|
type Panel interface {
|
||
|
GetNodeInfo() (nodeInfo *NodeInfo, err error)
|
||
|
GetUserList() (userList []UserInfo, err error)
|
||
|
ReportUserTraffic(userTraffic []UserTraffic) (err error)
|
||
|
Describe() ClientInfo
|
||
|
Debug()
|
||
|
}
|