How does one use pflag while also using other packages that use flag?
Some of these packages define flags for the flag package (e.g. in their init functions) - and require flag.Parse() to be called.
Defining flags using the pflag package, require pflag.Parse() to be called.
One of the calls to flag.Parse() and pflag.Parse() will fail when arguments are mixed.
How does one use pflag with other packages that use flag?