If I define
host := parser.String("h", "host", &argparse.Options{Required: false, Help: "listening host", Default: "127.0.0.1"})
// ...
I'll get a panic ->
panic: unable to add String: short name h occurs more than once
This is because there's a built-in -h/--help already occupied it.
For now I can workaround it by using a different letter, but It would be a nice to have support for h 😁
If I define
I'll get a panic ->
This is because there's a built-in
-h/--helpalready occupied it.For now I can workaround it by using a different letter, but It would be a nice to have support for
h😁