mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
18 lines
474 B
Go
18 lines
474 B
Go
|
package geodata
|
||
|
|
||
|
import (
|
||
|
"github.com/Dreamacro/clash/component/geodata/router"
|
||
|
)
|
||
|
|
||
|
type LoaderImplementation interface {
|
||
|
LoadSite(filename, list string) ([]*router.Domain, error)
|
||
|
LoadIP(filename, country string) ([]*router.CIDR, error)
|
||
|
}
|
||
|
|
||
|
type Loader interface {
|
||
|
LoaderImplementation
|
||
|
LoadGeoSite(list string) ([]*router.Domain, error)
|
||
|
LoadGeoSiteWithAttr(file string, siteWithAttr string) ([]*router.Domain, error)
|
||
|
LoadGeoIP(country string) ([]*router.CIDR, error)
|
||
|
}
|