rule.go 307 B

12345678910111213141516171819
  1. package constant
  2. const (
  3. RuleTypeDefault = "default"
  4. RuleTypeLogical = "logical"
  5. )
  6. const (
  7. LogicalTypeAnd = "and"
  8. LogicalTypeOr = "or"
  9. )
  10. const (
  11. RuleSetTypeLocal = "local"
  12. RuleSetTypeRemote = "remote"
  13. RuleSetVersion1 = 1
  14. RuleSetFormatSource = "source"
  15. RuleSetFormatBinary = "binary"
  16. )