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