15 lines
232 B
Go
Raw Normal View History

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