1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-16 17:34:38 -04:00
v2fly/app/handlers.go

10 lines
190 B
Go
Raw Normal View History

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