mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-02 06:48:14 -05:00
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
|
||
|
}
|