handlers.go 165 B

123456789
  1. package app
  2. import (
  3. "github.com/v2ray/v2ray-core/proxy"
  4. )
  5. type InboundHandlerManager interface {
  6. GetHandler(tag string) (proxy.InboundConnectionHandler, int)
  7. }