1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-11-23 12:02:58 -05:00
Files
v2fly/app/router/rules/config/rules.go

11 lines
150 B
Go
Raw Normal View History

2015-11-22 12:05:21 +01:00
package config
2015-11-21 21:43:40 +01:00
import (
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Rule interface {
Tag() string
2015-11-21 21:43:40 +01:00
Apply(dest v2net.Destination) bool
}