-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconsts.py
24 lines (18 loc) · 865 Bytes
/
consts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
xrayFullJsonExePath = "./xray_full_json/xray_full_json"
xrayFullJsonTemplatesPath = "./xray_full_json/default_template_configs"
xrayJsonPath = {
"active": {
"all": "collected-proxies/xray-json/actives_all.txt",
"under1000ms": "collected-proxies/xray-json/actives_under_1000ms.txt",
"under1500ms": "collected-proxies/xray-json/actives_under_1500ms.txt",
"no403under1000ms": "collected-proxies/xray-json/actives_no_403_under_1000ms.txt",
}
}
xrayJsonFullPath = {
"active": {
"all": "collected-proxies/xray-json-full/actives_all.json",
"under1000ms": "collected-proxies/xray-json-full/actives_under_1000ms.json",
"under1500ms": "collected-proxies/xray-json-full/actives_under_1500ms.json",
"no403under1000ms": "collected-proxies/xray-json-full/actives_no_403_under_1000ms.json",
}
}