1234567891011121314151617181920212223242526272829303132 |
- 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 (b *Base) ProviderNames() []string { return nil }
- func HasNoResolve(params []string) bool {
- for _, p := range params {
- if p == noResolve {
- return true
- }
- }
- return false
- }
|