mirror of https://github.com/dnomd343/XProxy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
407 B
12 lines
407 B
1 year ago
|
package assets
|
||
|
|
||
|
import "XProxy/next/logger"
|
||
|
|
||
|
func Demo() {
|
||
|
raw, _ := download("https://cdn.dnomd343.top/v2ray-rules-dat/geosite.dat", "")
|
||
|
//raw, _ := download("https://cdn.dnomd343.top/v2ray-rules-dat/geosite.dat", "socks5://192.168.2.2:1084")
|
||
|
//raw, _ := download("https://cdn.dnomd343.top/v2ray-rules-dat/geosite.dat.xz", "")
|
||
|
ret, _ := tryExtract(raw)
|
||
|
logger.Debugf("content size -> %d", len(ret))
|
||
|
}
|