mirror of https://github.com/v2ray/v2ray-core
Darien Raymond
7 years ago
2 changed files with 19 additions and 1 deletions
@ -0,0 +1,15 @@
|
||||
package jsonem |
||||
|
||||
import ( |
||||
"v2ray.com/core" |
||||
"v2ray.com/core/common" |
||||
"v2ray.com/ext/tools/conf/serial" |
||||
) |
||||
|
||||
func init() { |
||||
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{ |
||||
Name: "JSON", |
||||
Extension: []string{"json"}, |
||||
Loader: serial.LoadJSONConfig, |
||||
})) |
||||
} |
Loading…
Reference in new issue