mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
2bba8aa14a
and use it by default
18 lines
276 B
Go
18 lines
276 B
Go
package constant
|
|
|
|
import (
|
|
"github.com/metacubex/mihomo/component/geodata/router"
|
|
)
|
|
|
|
type RuleGeoSite interface {
|
|
GetDomainMatcher() router.DomainMatcher
|
|
}
|
|
|
|
type RuleGeoIP interface {
|
|
GetIPMatcher() *router.GeoIPMatcher
|
|
}
|
|
|
|
type RuleGroup interface {
|
|
GetRecodeSize() int
|
|
}
|