1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 07:16:29 -04:00
v2fly/proxy/blackhole/init.go

13 lines
264 B
Go
Raw Normal View History

2016-10-17 08:35:13 -04:00
package blackhole
import (
2016-12-27 18:53:29 -05:00
"v2ray.com/core/common"
2016-12-15 05:51:09 -05:00
"v2ray.com/core/common/serial"
2016-12-15 09:46:20 -05:00
"v2ray.com/core/proxy"
2016-10-17 08:35:13 -04:00
)
func init() {
// Must listed after config.pb.go
2016-12-27 18:53:29 -05:00
common.Must(proxy.RegisterOutboundHandlerCreator(serial.GetMessageType(new(Config)), new(Factory)))
2016-10-17 08:35:13 -04:00
}