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:
15
proxy/http/config/json/json.go
Normal file
15
proxy/http/config/json/json.go
Normal 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)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user