mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
17 lines
361 B
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{})
|
|
}
|