mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 03:32:33 +08:00
18 lines
276 B
Go
18 lines
276 B
Go
package constant
|
|
|
|
import (
|
|
"github.com/Dreamacro/clash/component/geodata/router"
|
|
)
|
|
|
|
type RuleGeoSite interface {
|
|
GetDomainMatcher() *router.DomainMatcher
|
|
}
|
|
|
|
type RuleGeoIP interface {
|
|
GetIPMatcher() *router.GeoIPMatcher
|
|
}
|
|
|
|
type RuleGroup interface {
|
|
GetRecodeSize() int
|
|
}
|