summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorsjlleo <[email protected]>2022-05-21 17:17:33 +0800
committersjlleo <[email protected]>2022-05-21 17:17:33 +0800
commited8f48835c9edc17a417abb8f6d472b20e5cff6d (patch)
tree4951e89e18ae7f552230460e89e22b900ee5ae0b /main.go
parentcd8251b93bd992824665a0b6111cee889189c1d4 (diff)
Add: proxy modulev3.1.0
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index dc2c726..76c1447 100644
--- a/main.go
+++ b/main.go
@@ -9,6 +9,7 @@ import (
var custom = flag.String("custom", "", "自定义测试NF影片ID\n绝命毒师的ID是70143836")
var address = flag.String("address", "", "本机网卡的IP")
+var proxy = flag.String("proxy", "", "代理地址")
func main() {
@@ -17,6 +18,7 @@ func main() {
r := verify.NewVerify(verify.Config{
LocalAddr: *address,
Custom: *custom,
+ Proxy: *proxy,
})
printer.Print(*r)