Meow
2026-04-14 00:42:29 +08:00
committed by GitHub
parent e9f7d61c2e
commit 82624bcaf0
73 changed files with 5432 additions and 4455 deletions
+13
View File
@@ -0,0 +1,13 @@
package geodata
type DomainRegistry struct{}
func (r *DomainRegistry) BuildDomainMatcher(rules []*DomainRule) (DomainMatcher, error) {
return buildDomainMatcher(rules)
}
func newDomainRegistry() *DomainRegistry {
return &DomainRegistry{}
}
var DomainReg = newDomainRegistry()