mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
11 lines
339 B
Go
11 lines
339 B
Go
package geodata
|
|
|
|
import v2router "github.com/v2fly/v2ray-core/v4/app/router"
|
|
|
|
type GeodataLoader interface {
|
|
LoadIP(filename, country string) ([]*v2router.CIDR, error)
|
|
LoadSite(filename, list string) ([]*v2router.Domain, error)
|
|
LoadGeoIP(country string) ([]*v2router.CIDR, error)
|
|
LoadGeoSite(list string) ([]*v2router.Domain, error)
|
|
}
|