mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
11 lines
274 B
Go
11 lines
274 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, err error)
|
||
|
Debug()
|
||
|
}
|