mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 10:28:13 -05:00
15c36a9580
refactor limiter fix getLink bug add connection limit move limit config to ControllerConfig del dynamic speed limit (next version will be re add) del online ip sync (next version will be re add)
10 lines
168 B
Go
10 lines
168 B
Go
package iprecoder
|
|
|
|
import (
|
|
"github.com/Yuzuki616/V2bX/limiter"
|
|
)
|
|
|
|
type IpRecorder interface {
|
|
SyncOnlineIp(Ips []limiter.UserIpList) ([]limiter.UserIpList, error)
|
|
}
|