clash/component/geodata/geodataproto.go

18 lines
474 B
Go
Raw Normal View History

2021-07-01 14:49:29 +00:00
package geodata
import (
"github.com/Dreamacro/clash/component/geodata/router"
)
2021-07-01 14:49:29 +00:00
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)
}