SubprocessPluginRuntime implements the Plugin interface for subprocess execution
| 80 | |
| 81 | // SubprocessPluginRuntime implements the Plugin interface for subprocess execution |
| 82 | type SubprocessPluginRuntime struct { |
| 83 | metadata Metadata |
| 84 | pluginDir string |
| 85 | RuntimeConfig RuntimeConfigSubprocess |
| 86 | EnvVars map[string]string |
| 87 | } |
| 88 | |
| 89 | var _ Plugin = (*SubprocessPluginRuntime)(nil) |
| 90 |
nothing calls this directly
no outgoing calls
no test coverage detected