mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-13 02:57:27 +00: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
|
|
}
|