1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-10 22:44:20 -04:00
v2fly/proxy/registry/config_cache_json.go
2016-08-17 23:30:15 +02:00

13 lines
254 B
Go

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