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