clash/rules/common/base.go
2023-01-09 21:12:13 +08:00

31 lines
388 B
Go

package common
import (
"errors"
)
var (
errPayload = errors.New("payloadRule error")
noResolve = "no-resolve"
)
type Base struct {
}
func (b *Base) ShouldFindProcess() bool {
return false
}
func (b *Base) ShouldResolveIP() bool {
return false
}
func HasNoResolve(params []string) bool {
for _, p := range params {
if p == noResolve {
return true
}
}
return false
}