mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
15 lines
232 B
Go
15 lines
232 B
Go
package json
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy/common/config/json"
|
|
)
|
|
|
|
type HttpProxyConfig struct {
|
|
}
|
|
|
|
func init() {
|
|
json.RegisterInboundConnectionConfig("http", func() interface{} {
|
|
return new(HttpProxyConfig)
|
|
})
|
|
}
|