mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-02 06:48:14 -05:00
11 lines
294 B
Go
11 lines
294 B
Go
package api
|
|
|
|
type API 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()
|
|
}
|