json.go 232 B

1234567891011121314
  1. package json
  2. import (
  3. "github.com/v2ray/v2ray-core/proxy/common/config/json"
  4. )
  5. type HttpProxyConfig struct {
  6. }
  7. func init() {
  8. json.RegisterInboundConnectionConfig("http", func() interface{} {
  9. return new(HttpProxyConfig)
  10. })
  11. }