1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/proxy/registry/config_cache_json.go
2016-08-20 20:55:45 +02:00

13 lines
241 B
Go

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