1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/proxy/http/config_json.go

15 lines
234 B
Go

// +build json
package http
import (
"github.com/v2ray/v2ray-core/proxy/internal/config"
)
func init() {
config.RegisterInboundConnectionConfig("http",
func(data []byte) (interface{}, error) {
return new(Config), nil
})
}