mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 10:28:13 -05:00
8 lines
181 B
Go
8 lines
181 B
Go
|
package iprecoder
|
||
|
|
||
|
import "github.com/Yuzuki616/V2bX/core/app/dispatcher"
|
||
|
|
||
|
type IpRecorder interface {
|
||
|
SyncOnlineIp(Ips []dispatcher.UserIpList) ([]dispatcher.UserIpList, error)
|
||
|
}
|