Args returns the first parsed command line arguments WITHOUT the options
()
| 49 | |
| 50 | // Args returns the first parsed command line arguments WITHOUT the options |
| 51 | func (p CommandFlagsParser) Args() []string { |
| 52 | return p.parsedArgs |
| 53 | } |
| 54 | |
| 55 | // FlagsParser interface used for parsing the command line arguments using the flag library |
| 56 | type FlagsParser interface { |