sing-box/constant/rule.go

20 lines
307 B
Go
Raw Permalink 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"
RuleSetVersion1 = 1
RuleSetFormatSource = "source"
RuleSetFormatBinary = "binary"
)