mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-09-28 21:24:03 -04:00
16 lines
312 B
Go
16 lines
312 B
Go
package json
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config/json"
|
|
)
|
|
|
|
type HttpProxyConfig struct {
|
|
}
|
|
|
|
func init() {
|
|
config.RegisterInboundConnectionConfig("http", json.JsonConfigLoader(func() interface{} {
|
|
return new(HttpProxyConfig)
|
|
}))
|
|
}
|