1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-11 11:57:14 -05:00
v2fly/app/router/rules/config/rules.go
2015-11-30 15:14:38 +00:00

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
}