mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
20 lines
307 B
Go
20 lines
307 B
Go
package constant
|
|
|
|
const (
|
|
RuleTypeDefault = "default"
|
|
RuleTypeLogical = "logical"
|
|
)
|
|
|
|
const (
|
|
LogicalTypeAnd = "and"
|
|
LogicalTypeOr = "or"
|
|
)
|
|
|
|
const (
|
|
RuleSetTypeLocal = "local"
|
|
RuleSetTypeRemote = "remote"
|
|
RuleSetVersion1 = 1
|
|
RuleSetFormatSource = "source"
|
|
RuleSetFormatBinary = "binary"
|
|
)
|