1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-11 06:54:34 -04:00
v2fly/proxy/registry/config_cache_json.go
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")
}