mstruebing / tldr

Golang command line client for tldr https://github.com/tldr-pages/tldr
MIT License
262 stars 23 forks source link

Use the "flags" package #5

Closed mstruebing closed 7 years ago

mstruebing commented 7 years ago

instead of manually parsing CLI arguments

gavinwade12 commented 7 years ago

Would you be interested in using something like https://github.com/urfave/cli to make more of a command-like CLI (i.e. git push, git pull)? If not, I can use flags. I just feel this is more command oriented since not many of the flags actually require a value. Thoughts?

mstruebing commented 7 years ago

TBH I like the fact that I don't need 3rd party packages and would stick to this approach as long as possible. So if this isn't a problem for you I would rather use the flags package.

But very cool that you want to work on this, thank you :+1: