| 1234567891011121314 | // +build jsonpackage blackholeimport (	"github.com/v2ray/v2ray-core/proxy/internal/config")func init() {	config.RegisterOutboundConnectionConfig("blackhole",		func(data []byte) (interface{}, error) {			return new(Config), nil		})}
 |