1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-25 13:54:20 -04:00
v2fly/app/router/rules/config/rules.go

12 lines
210 B
Go
Raw Normal View History

2015-11-22 06:05:21 -05:00
package config
2015-11-21 15:43:40 -05:00
import (
v2net "github.com/v2ray/v2ray-core/common/net"
2015-11-29 08:45:32 -05:00
"github.com/v2ray/v2ray-core/shell/point/config"
2015-11-21 15:43:40 -05:00
)
type Rule interface {
2015-11-22 11:41:52 -05:00
Tag() config.DetourTag
2015-11-21 15:43:40 -05:00
Apply(dest v2net.Destination) bool
}