rules.go 150 B

12345678910
  1. package config
  2. import (
  3. v2net "github.com/v2ray/v2ray-core/common/net"
  4. )
  5. type Rule interface {
  6. Tag() string
  7. Apply(dest v2net.Destination) bool
  8. }