1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 11:05:24 +00:00
v2fly/app/handlers.go
2016-01-02 23:32:18 +01:00

10 lines
165 B
Go

package app
import (
"github.com/v2ray/v2ray-core/proxy"
)
type InboundHandlerManager interface {
GetHandler(tag string) (proxy.InboundConnectionHandler, int)
}