1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00

add auto register hook

This commit is contained in:
Shelikhoo 2021-09-05 00:47:15 +01:00
parent a4c66656b1
commit 98bf3dc79a
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

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
}