mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/issues/4422#issuecomment-3533007890 Breaking changes https://github.com/XTLS/Xray-core/pull/5569 Reverts https://github.com/XTLS/Xray-core/pull/5505 Closes https://github.com/XTLS/Xray-core/pull/643
14 lines
282 B
Go
14 lines
282 B
Go
package geodata
|
|
|
|
type DomainRegistry struct{}
|
|
|
|
func (r *DomainRegistry) BuildDomainMatcher(rules []*DomainRule) (DomainMatcher, error) {
|
|
return buildDomainMatcher(rules)
|
|
}
|
|
|
|
func newDomainRegistry() *DomainRegistry {
|
|
return &DomainRegistry{}
|
|
}
|
|
|
|
var DomainReg = newDomainRegistry()
|