1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-12 00:35:27 -04:00

add auto register hook

This commit is contained in:
Shelikhoo
2021-09-05 00:47:15 +01:00
parent a4c66656b1
commit 98bf3dc79a

View File

@@ -3,6 +3,8 @@ package common
import (
"context"
"reflect"
"github.com/v2fly/v2ray-core/v4/common/registry"
)
// ConfigCreator is a function to create an object by a config.
@@ -17,6 +19,8 @@ func RegisterConfig(config interface{}, configCreator ConfigCreator) error {
return newError(configType.Name() + " is already registered").AtError()
}
typeCreatorRegistry[configType] = configCreator
registry.RegisterImplementation(config, nil)
return nil
}