sing-box/constant/rule.go

24 lines
338 B
Go
Raw Normal View History

2022-07-02 14:07:50 +08:00
package constant
const (
RuleTypeDefault = "default"
RuleTypeLogical = "logical"
)
2022-07-02 22:55:10 +08:00
const (
LogicalTypeAnd = "and"
LogicalTypeOr = "or"
)
2023-12-01 13:24:12 +08:00
const (
RuleSetTypeLocal = "local"
RuleSetTypeRemote = "remote"
RuleSetFormatSource = "source"
RuleSetFormatBinary = "binary"
)
2024-07-17 17:57:35 +08:00
const (
RuleSetVersion1 = 1 + iota
RuleSetVersion2
)