sing-box/constant/rule.go

24 lines
338 B
Go
Raw Normal View History

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