mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
17 lines
581 B
Go
17 lines
581 B
Go
package v5cfg
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/golang/protobuf/proto"
|
|
"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) {
|
|
fsdef := envimpl.NewDefaultFileSystemDefaultImpl()
|
|
ctx := envctx.ContextWithEnvironment(context.TODO(), fsdef)
|
|
return registry.LoadImplementationByAlias(ctx, interfaceType, name, []byte(rawJson))
|
|
}
|