mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 01:07:55 -05:00
13 lines
254 B
Go
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")
|
|
}
|