1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package geodata
|
| import (
| "github.com/v2fly/v2ray-core/v5/app/router/routercommon"
| )
|
| //go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
|
| type LoaderImplementation interface {
| LoadSite(filename, list string) ([]*routercommon.Domain, error)
| LoadIP(filename, country string) ([]*routercommon.CIDR, error)
| }
|
| type Loader interface {
| LoaderImplementation
| LoadGeoSite(list string) ([]*routercommon.Domain, error)
| LoadGeoSiteWithAttr(file string, siteWithAttr string) ([]*routercommon.Domain, error)
| LoadGeoIP(country string) ([]*routercommon.CIDR, error)
| }
|
|