mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 02:18:13 -05:00
695da4f4c5
change to uniproxy api refactor build inbound refactor limiter and rule add ss2022 support add speedlimit support and more...
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()
|
|
}
|