| 12345678910111213141516171819 |
- // +build json
- package internet
- import (
- "v2ray.com/core/common/loader"
- )
- func CreateAuthenticatorConfig(rawConfig []byte) (string, interface{}, error) {
- config, name, err := configLoader.Load(rawConfig)
- if err != nil {
- return name, nil, err
- }
- return name, config, nil
- }
- var (
- configLoader = loader.NewJSONConfigLoader(loader.ConfigCreatorCache{}, "type", "")
- )
|