v2ray-core/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")
}