| 34 | } |
| 35 | |
| 36 | type CliRpcCmd struct { |
| 37 | PluginMetadata *plugin.PluginMetadata |
| 38 | MetadataMutex *sync.RWMutex |
| 39 | outputCapture OutputCapture |
| 40 | terminalOutputSwitch TerminalOutputSwitch |
| 41 | cliConfig coreconfig.Repository |
| 42 | repoLocator api.RepositoryLocator |
| 43 | newCmdRunner CommandRunner |
| 44 | outputBucket *bytes.Buffer |
| 45 | logger trace.Printer |
| 46 | stdout io.Writer |
| 47 | } |
| 48 | |
| 49 | //go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . TerminalOutputSwitch |
| 50 |
nothing calls this directly
no outgoing calls
no test coverage detected