1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-07 18:07:23 -05:00
v2fly/infra/conf/v5cfg/common.go

17 lines
581 B
Go
Raw Normal View History

package v5cfg
import (
2021-09-05 10:37:26 -04:00
"context"
"encoding/json"
"github.com/golang/protobuf/proto"
2021-09-05 10:37:26 -04:00
"github.com/v2fly/v2ray-core/v4/common/environment/envctx"
"github.com/v2fly/v2ray-core/v4/common/environment/envimpl"
"github.com/v2fly/v2ray-core/v4/common/registry"
)
func loadHeterogeneousConfigFromRawJson(interfaceType, name string, rawJson json.RawMessage) (proto.Message, error) {
2021-09-05 10:37:26 -04:00
fsdef := envimpl.NewDefaultFileSystemDefaultImpl()
ctx := envctx.ContextWithEnvironment(context.TODO(), fsdef)
return registry.LoadImplementationByAlias(ctx, interfaceType, name, []byte(rawJson))
}