mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-06 23:58:09 +00:00
11 lines
210 B
Go
11 lines
210 B
Go
![]() |
package app
|
||
|
|
||
|
import (
|
||
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
||
|
"github.com/v2ray/v2ray-core/transport/ray"
|
||
|
)
|
||
|
|
||
|
type PacketDispatcher interface {
|
||
|
DispatchToOutbound(packet v2net.Packet) ray.InboundRay
|
||
|
}
|