20 lines
379 B
Go
Raw Normal View History

2015-11-22 12:05:21 +01:00
package json
import (
"github.com/v2ray/v2ray-core/app/point/config"
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Rule struct {
Type string `json:"type"`
OutboundTag string `json:"outboundTag"`
}
2015-11-22 17:41:52 +01:00
func (this *Rule) Tag() config.DetourTag {
return config.DetourTag(this.OutboundTag)
2015-11-22 12:05:21 +01:00
}
func (this *Rule) Apply(dest v2net.Destination) bool {
return false
}