mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-11 11:57:14 -05:00
11 lines
150 B
Go
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
|
|
}
|