1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 22:04:30 -04:00
v2fly/main/json/config_json.go

26 lines
655 B
Go
Raw Normal View History

package json
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg json -path Main,Json
2016-10-15 18:46:30 -04:00
import (
"io"
"v2ray.com/core"
2018-02-12 05:40:42 -05:00
"v2ray.com/core/common"
2018-04-08 17:22:55 -04:00
"v2ray.com/core/common/platform/ctlcmd"
)
func init() {
2018-02-14 17:57:40 -05:00
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
Loader: func(input io.Reader) (*core.Config, error) {
2018-04-08 17:22:55 -04:00
jsonContent, err := ctlcmd.Run([]string{"config"}, input)
2018-02-14 17:57:40 -05:00
if err != nil {
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
}
2018-04-08 17:22:55 -04:00
return core.LoadConfig("protobuf", "", &jsonContent)
2018-02-14 17:57:40 -05:00
},
2018-02-12 05:40:42 -05:00
}))
}