()
| 17 | type commandRunner struct{} |
| 18 | |
| 19 | func NewCommandRunner() CommandRunner { |
| 20 | return &commandRunner{} |
| 21 | } |
| 22 | |
| 23 | func (c *commandRunner) Command(args []string, deps commandregistry.Dependency, pluginApiCall bool) (err error) { |
| 24 | cmdRegistry := commandregistry.Commands |
no outgoing calls
no test coverage detected