1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-15 17:04:45 -04:00
v2fly/proxy/blackhole/init.go
2016-10-17 14:35:13 +02:00

12 lines
235 B
Go

package blackhole
import (
"v2ray.com/core/common/loader"
"v2ray.com/core/proxy/registry"
)
func init() {
// Must listed after config.pb.go
registry.MustRegisterOutboundHandlerCreator(loader.GetType(new(Config)), new(Factory))
}