v2ray-core/app/router/rules/config/rules.go

11 lines
150 B
Go

package config
import (
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Rule interface {
Tag() string
Apply(dest v2net.Destination) bool
}