mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
13 lines
296 B
Go
13 lines
296 B
Go
// +build json
|
|
|
|
package registry
|
|
|
|
import (
|
|
"v2ray.com/core/common/loader"
|
|
)
|
|
|
|
func init() {
|
|
inboundConfigCache = loader.NewJSONConfigLoader(inboundConfigCreatorCache, "protocol", "settings")
|
|
outboundConfigCache = loader.NewJSONConfigLoader(outboundConfigCreatorCache, "protocol", "settings")
|
|
}
|