1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-14 09:14:15 -04:00
v2fly/app/handlers.go

10 lines
165 B
Go
Raw Normal View History

package app
import (
2016-01-02 17:32:18 -05:00
"github.com/v2ray/v2ray-core/proxy"
)
type InboundHandlerManager interface {
2016-01-02 17:32:18 -05:00
GetHandler(tag string) (proxy.InboundConnectionHandler, int)
}