mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
18 lines
281 B
Go
18 lines
281 B
Go
package constant
|
|
|
|
import (
|
|
"github.com/MerlinKodo/clash-rev/component/geodata/router"
|
|
)
|
|
|
|
type RuleGeoSite interface {
|
|
GetDomainMatcher() *router.DomainMatcher
|
|
}
|
|
|
|
type RuleGeoIP interface {
|
|
GetIPMatcher() *router.GeoIPMatcher
|
|
}
|
|
|
|
type RuleGroup interface {
|
|
GetRecodeSize() int
|
|
}
|