| 1234567891011121314151617181920212223 |
- package constant
- const (
- RuleTypeDefault = "default"
- RuleTypeLogical = "logical"
- )
- const (
- LogicalTypeAnd = "and"
- LogicalTypeOr = "or"
- )
- const (
- RuleSetTypeLocal = "local"
- RuleSetTypeRemote = "remote"
- RuleSetFormatSource = "source"
- RuleSetFormatBinary = "binary"
- )
- const (
- RuleSetVersion1 = 1 + iota
- RuleSetVersion2
- )
|