9 lines
160 B
Go
9 lines
160 B
Go
package rules
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRuleTypeNotFound = errors.New("rule type not found")
|
|
ErrRuleTargetNotFound = errors.New("rule target not found")
|
|
)
|