FlagsParser interface used for parsing the command line arguments using the flag library
| 54 | |
| 55 | // FlagsParser interface used for parsing the command line arguments using the flag library |
| 56 | type FlagsParser interface { |
| 57 | ParseFlags(flags *flag.FlagSet, args []string) error |
| 58 | } |
| 59 | |
| 60 | // FlagsValidator interface used for validating the parsed flags |
| 61 | type FlagsValidator interface { |
no outgoing calls
no test coverage detected