CommandRunner is the type that a command mode should implement.
| 94 | |
| 95 | // CommandRunner is the type that a command mode should implement. |
| 96 | type CommandRunner interface { |
| 97 | Usage() |
| 98 | RunCommand(args []string) error |
| 99 | } |
| 100 | |
| 101 | // ExecRunner is the type that a command mode should implement when that mode |
| 102 | // just calls a new executable that will run as a new command. |
no outgoing calls
no test coverage detected