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
Commands can also have subcommands, which are added with addSubcommand. A command with subcommands can't run its own code, so run doesn't need to be implemented.
Consider an example:
$ ip route
<prints routes>
$ ip route add ...
<adds a route>
$ ip route del ...
<removes a route>
So I cannot implement a similar CLI with the args package?
The text was updated successfully, but these errors were encountered:
From the docs:
Consider an example:
So I cannot implement a similar CLI with the
args
package?The text was updated successfully, but these errors were encountered: