mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 10:28:13 -05:00
d76c6a73eb
add conditional compilation support add multi core support
23 lines
555 B
Go
23 lines
555 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(email string, reset bool) (up int64, down int64)
|
|
DelUsers(users []string, tag string) error
|
|
}
|