rule.go 338 B

1234567891011121314151617181920212223
  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. RuleSetFormatSource = "source"
  14. RuleSetFormatBinary = "binary"
  15. )
  16. const (
  17. RuleSetVersion1 = 1 + iota
  18. RuleSetVersion2
  19. )