Add proxy to list command also

This commit is contained in:
Dave Gallant
2024-07-24 07:39:27 -04:00
parent c225d77696
commit 885f73db1c
2 changed files with 3 additions and 1 deletions

View File

@@ -14,6 +14,8 @@ import (
func init() {
rootCmd.AddCommand(listCmd)
listCmd.Flags().StringVarP(&flagProxy, "proxy", "p", "", "provide a http/https proxy server to make requests through (i.e. http://127.0.0.1:8080)")
listCmd.Flags().StringVarP(&flagSocks5Proxy, "socks5", "s", "", "provide a socks5 proxy server to make requests through (i.e. 127.0.0.1:1080)")
}
var listCmd = &cobra.Command{