1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 07:26:24 -05:00

Remove comments from json files

This commit is contained in:
V2Ray 2015-09-13 00:14:14 +02:00
parent de636b123a
commit b0c5b816da
7 changed files with 7 additions and 13 deletions

View File

@ -1,4 +1,3 @@
/* Socks 5 */
{
"auth": "noauth" /* */
"auth": "noauth"
}

View File

@ -1,7 +1,5 @@
/* VMess */
{
"clients": [
/* ID */
{"id": "ad937d9d-6e23-4a5a-ba23-bce5092a7c51"}
]
}

View File

@ -1,11 +1,9 @@
/* VMess */
{
"vnext": [
{
"address": "127.0.0.1", /* */
"address": "127.0.0.1",
"port": 27183,
"users": [
/* */
{"id": "ad937d9d-6e23-4a5a-ba23-bce5092a7c51"}
]
}

View File

@ -1,12 +1,11 @@
/* Point Socks5 Point */
{
"port": 1080, /* Socks 5 */
"port": 1080,
"inbound": {
"protocol": "socks",
"file": "in_socks.json" /* Socks 5 */
"file": "in_socks.json"
},
"outbound": {
"protocol": "vmess",
"file": "out_vmess.json" /* VMess */
"file": "out_vmess.json"
}
}

View File

@ -1,4 +1,3 @@
/* Point VMess */
{
"port": 27183,
"inbound": {

View File

@ -8,6 +8,7 @@ import (
"github.com/v2ray/v2ray-core"
"github.com/v2ray/v2ray-core/log"
// The following are neccesary as they register handlers in their init functions.
_ "github.com/v2ray/v2ray-core/net/freedom"
_ "github.com/v2ray/v2ray-core/net/socks"
_ "github.com/v2ray/v2ray-core/net/vmess"