mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-07 20:31:41 +00:00
15 lines
464 B
Go
15 lines
464 B
Go
package geodata
|
|
|
|
import "github.com/Dreamacro/clash/rule/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)
|
|
}
|