1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-04 16:37:12 -05:00
v2fly/proxy/http/json/json.go

16 lines
312 B
Go
Raw Normal View History

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