예제 #1
0
파일: json.go 프로젝트: road0001/v2ray-core
func init() {
	json.RegisterOutboundConnectionConfig("freedom", func() interface{} {
		return &FreedomConfiguration{}
	})
}
예제 #2
0
func init() {
	jsonconfig.RegisterOutboundConnectionConfig("vmess", func() interface{} {
		return new(Outbound)
	})
}
예제 #3
0
파일: json.go 프로젝트: road0001/v2ray-core
func init() {
	json.RegisterOutboundConnectionConfig("blackhole", func() interface{} {
		return new(BlackHoleConfig)
	})
}