V2bX/api/iprecoder/interface.go

8 lines
181 B
Go
Raw Normal View History

2022-10-20 23:07:04 -04:00
package iprecoder
import "github.com/Yuzuki616/V2bX/core/app/dispatcher"
type IpRecorder interface {
SyncOnlineIp(Ips []dispatcher.UserIpList) ([]dispatcher.UserIpList, error)
}