DefaultCommandFlagsParser defines default implementation of the parser. It uses positional arguments and assumes that the command args will contain arguments
| 64 | |
| 65 | // DefaultCommandFlagsParser defines default implementation of the parser. It uses positional arguments and assumes that the command args will contain arguments |
| 66 | type DefaultCommandFlagsParser struct { |
| 67 | positionalArgNames []string |
| 68 | } |
| 69 | |
| 70 | // NewDefaultCommandFlagsParser initializes DefaultCommandFlagsParser |
| 71 | func NewDefaultCommandFlagsParser(positionalArgNames []string) DefaultCommandFlagsParser { |
nothing calls this directly
no outgoing calls
no test coverage detected