1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-04 00:05:21 -05:00

beginning of http proxy

This commit is contained in:
V2Ray
2015-10-28 12:13:27 +01:00
parent 294376edc0
commit 08328d23fa
3 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
package json
import (
"github.com/v2ray/v2ray-core/config"
"github.com/v2ray/v2ray-core/config/json"
)
type HttpProxyConfig struct {
}
func init() {
json.RegisterConfigType("http", config.TypeInbound, func() interface{} {
return new(HttpProxyConfig)
})
}