1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 08:16:00 -04:00
v2fly/proxy/blackhole/config/json/json.go
2015-10-28 17:41:14 +01:00

16 lines
269 B
Go

package json
import (
"github.com/v2ray/v2ray-core/config"
"github.com/v2ray/v2ray-core/config/json"
)
type BlackHoleConfig struct {
}
func init() {
json.RegisterConfigType("blackhole", config.TypeInbound, func() interface{} {
return new(BlackHoleConfig)
})
}