1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-02 00:36:03 -04:00
v2fly/proxy/http/config/json/json.go

15 lines
232 B
Go
Raw Normal View History

2015-10-28 07:13:27 -04:00
package json
import (
2015-10-30 17:42:24 -04:00
"github.com/v2ray/v2ray-core/proxy/common/config/json"
2015-10-28 07:13:27 -04:00
)
type HttpProxyConfig struct {
}
func init() {
2015-10-30 17:42:24 -04:00
json.RegisterInboundConnectionConfig("http", func() interface{} {
2015-10-28 07:13:27 -04:00
return new(HttpProxyConfig)
})
}