mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-09-06 06:43:16 +00:00
10 lines
190 B
Go
10 lines
190 B
Go
![]() |
package app
|
||
|
|
||
|
import (
|
||
|
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
|
||
|
)
|
||
|
|
||
|
type InboundHandlerManager interface {
|
||
|
GetHandler(tag string) (connhandler.InboundConnectionHandler, int)
|
||
|
}
|