mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
15 lines
238 B
Go
15 lines
238 B
Go
package json
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy/common/config/json"
|
|
)
|
|
|
|
type BlackHoleConfig struct {
|
|
}
|
|
|
|
func init() {
|
|
json.RegisterOutboundConnectionConfig("blackhole", func() interface{} {
|
|
return new(BlackHoleConfig)
|
|
})
|
|
}
|