rule.go 370 B

123456789101112131415161718192021222324
  1. package constant
  2. const (
  3. RuleTypeDefault = "default"
  4. RuleTypeLogical = "logical"
  5. )
  6. const (
  7. LogicalTypeAnd = "and"
  8. LogicalTypeOr = "or"
  9. )
  10. const (
  11. RuleSetTypeInline = "inline"
  12. RuleSetTypeLocal = "local"
  13. RuleSetTypeRemote = "remote"
  14. RuleSetFormatSource = "source"
  15. RuleSetFormatBinary = "binary"
  16. )
  17. const (
  18. RuleSetVersion1 = 1 + iota
  19. RuleSetVersion2
  20. )