mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
24 lines
581 B
Go
24 lines
581 B
Go
package core
|
|
|
|
import (
|
|
"github.com/Yuzuki616/V2bX/api/panel"
|
|
"github.com/Yuzuki616/V2bX/conf"
|
|
)
|
|
|
|
type AddUsersParams struct {
|
|
Tag string
|
|
Config *conf.ControllerConfig
|
|
UserInfo []panel.UserInfo
|
|
NodeInfo *panel.NodeInfo
|
|
}
|
|
type Core interface {
|
|
Start() error
|
|
Close() error
|
|
AddNode(tag string, info *panel.NodeInfo, config *conf.ControllerConfig) error
|
|
DelNode(tag string) error
|
|
AddUsers(p *AddUsersParams) (added int, err error)
|
|
GetUserTraffic(tag, uuid string, reset bool) (up int64, down int64)
|
|
DelUsers(users []string, tag string) error
|
|
Protocols() []string
|
|
}
|