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