1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 12:05:23 +00:00
v2fly/proxy/freedom/freedomfactory.go

17 lines
361 B
Go

package freedom
import (
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
)
type FreedomFactory struct {
}
func (factory FreedomFactory) Create(config interface{}) (connhandler.OutboundConnectionHandler, error) {
return NewFreedomConnection(), nil
}
func init() {
connhandler.RegisterOutboundConnectionHandlerFactory("freedom", FreedomFactory{})
}