1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-09-30 06:04:03 -04:00
Files
v2fly/proxy/http/config/json/json.go
2015-10-28 12:13:27 +01:00

16 lines
264 B
Go

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)
})
}