Files
v2ray-core/proxy/registry/config_cache_json.go
T
2016-09-21 13:52:16 +02:00

13 lines
299 B
Go

// +build json
package registry
import (
"v2ray.com/core/common/loader"
)
func init() {
inboundConfigCache = loader.NewJSONConfigLoader(loader.ConfigCreatorCache{}, "protocol", "settings")
outboundConfigCache = loader.NewJSONConfigLoader(loader.ConfigCreatorCache{}, "protocol", "settings")
}