Files
Archive/clash-meta/constant/matcher.go
T
2024-08-28 20:33:34 +02:00

12 lines
163 B
Go

package constant
import "net/netip"
type DomainMatcher interface {
MatchDomain(domain string) bool
}
type IpMatcher interface {
MatchIp(ip netip.Addr) bool
}