12 lines
208 B
Go
Raw Normal View History

2015-11-21 21:43:40 +01:00
package rules
import (
"github.com/v2ray/v2ray-core/app/point/config"
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Rule interface {
Tag() *config.DetourTag
Apply(dest v2net.Destination) bool
}