diff options
author | sjlleo <[email protected]> | 2022-05-21 17:17:33 +0800 |
---|---|---|
committer | sjlleo <[email protected]> | 2022-05-21 17:17:33 +0800 |
commit | ed8f48835c9edc17a417abb8f6d472b20e5cff6d (patch) | |
tree | 4951e89e18ae7f552230460e89e22b900ee5ae0b /main.go | |
parent | cd8251b93bd992824665a0b6111cee889189c1d4 (diff) |
Add: proxy modulev3.1.0
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |