mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
10 lines
167 B
Go
10 lines
167 B
Go
package iprecoder
|
|
|
|
import (
|
|
"github.com/InazumaV/V2bX/limiter"
|
|
)
|
|
|
|
type IpRecorder interface {
|
|
SyncOnlineIp(Ips []limiter.UserIpList) ([]limiter.UserIpList, error)
|
|
}
|