10 lines
302 B
Go
Raw Normal View History

package internal
import (
"github.com/v2ray/v2ray-core/app"
2016-01-02 23:32:18 +01:00
"github.com/v2ray/v2ray-core/proxy"
)
2016-01-25 17:27:15 +01:00
type InboundHandlerCreator func(space app.Space, config interface{}) (proxy.InboundHandler, error)
type OutboundHandlerCreator func(space app.Space, config interface{}) (proxy.OutboundHandler, error)