├── .gitattributes ├── .github └── workflows │ └── sync.yml ├── LICENSE ├── README.md ├── bucket ├── naiveproxy.json ├── qv2ray-plugin-command.json ├── qv2ray-plugin-naiveproxy.json ├── qv2ray-plugin-ss.json ├── qv2ray-plugin-ssr.json ├── qv2ray-plugin-trojan-go.json ├── qv2ray-plugin-trojan.json ├── qv2ray.json ├── trojan-go.json ├── trojan.json ├── v2ray-domain-list-community.json ├── v2ray-geoip.json ├── v2ray-rules-dat.json ├── v2ray.json └── xray.json └── sync.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/README.md -------------------------------------------------------------------------------- /bucket/naiveproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/naiveproxy.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-command.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-naiveproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-naiveproxy.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-ss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-ss.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-ssr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-ssr.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-trojan-go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-trojan-go.json -------------------------------------------------------------------------------- /bucket/qv2ray-plugin-trojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray-plugin-trojan.json -------------------------------------------------------------------------------- /bucket/qv2ray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/qv2ray.json -------------------------------------------------------------------------------- /bucket/trojan-go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/trojan-go.json -------------------------------------------------------------------------------- /bucket/trojan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/trojan.json -------------------------------------------------------------------------------- /bucket/v2ray-domain-list-community.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/v2ray-domain-list-community.json -------------------------------------------------------------------------------- /bucket/v2ray-geoip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/v2ray-geoip.json -------------------------------------------------------------------------------- /bucket/v2ray-rules-dat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/v2ray-rules-dat.json -------------------------------------------------------------------------------- /bucket/v2ray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/v2ray.json -------------------------------------------------------------------------------- /bucket/xray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/bucket/xray.json -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qv2ray/mochi/HEAD/sync.sh --------------------------------------------------------------------------------