mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
10 lines
165 B
Go
10 lines
165 B
Go
package app
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy"
|
|
)
|
|
|
|
type InboundHandlerManager interface {
|
|
GetHandler(tag string) (proxy.InboundConnectionHandler, int)
|
|
}
|