1
0
mirror of https://github.com/wyx2685/V2bX.git synced 2025-03-11 06:58:13 -04:00
V2bX/api/interface.go

11 lines
294 B
Go
Raw Normal View History

2022-06-04 00:05:46 -04:00
package api
type API interface {
GetNodeInfo() (nodeInfo *NodeInfo, err error)
GetUserList() (userList []UserInfo, err error)
ReportUserTraffic(userTraffic []UserTraffic) (err error)
2022-06-04 00:05:46 -04:00
Describe() ClientInfo
GetNodeRule() (ruleList []DetectRule, protocolList []string, err error)
2022-06-04 00:05:46 -04:00
Debug()
}