You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pretty often one app have many commands. And option flags set additional parameters to that command. For example: git log --source rails s -p 3131
or pod install --help
I found really good example of argument parsing library for Go, called Cobra: https://github.com/spf13/cobra Which solves this task with ease. Is there a chance that you decide to add similar command parsing into Args?
The text was updated successfully, but these errors were encountered:
Pretty often one app have many commands. And option flags set additional parameters to that command. For example:
git log --source
rails s -p 3131
or
pod install --help
I found really good example of argument parsing library for Go, called Cobra: https://github.com/spf13/cobra Which solves this task with ease. Is there a chance that you decide to add similar command parsing into Args?
The text was updated successfully, but these errors were encountered: