| 6 | ) |
| 7 | |
| 8 | type Command interface { |
| 9 | Init(app *kingpin.Application, appFlags *flags.GlobalFlags) *kingpin.CmdClause |
| 10 | |
| 11 | // Run should return error only for critical issue. All other errors should be handled inside Run() function. |
| 12 | Run() error |
| 13 | } |
no outgoing calls
no test coverage detected