1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-09 14:54:34 -04:00
v2fly/proxy/shadowsocks/init.go
Darien Raymond 7c751fcca0
common.Must
2016-12-28 00:53:29 +01:00

14 lines
399 B
Go

package shadowsocks
import (
"v2ray.com/core/common"
"v2ray.com/core/common/serial"
"v2ray.com/core/proxy"
)
func init() {
// Must happen after config is initialized
common.Must(proxy.RegisterOutboundHandlerCreator(serial.GetMessageType(new(ClientConfig)), new(ClientFactory)))
common.Must(proxy.RegisterInboundHandlerCreator(serial.GetMessageType(new(ServerConfig)), new(ServerFactory)))
}