defaultExecutor is the default implementation using os/exec.
| 12 | |
| 13 | // defaultExecutor is the default implementation using os/exec. |
| 14 | type defaultExecutor struct{} |
| 15 | |
| 16 | func (defaultExecutor) CommandContext(ctx context.Context, name string, args ...string) *exec.Cmd { |
| 17 | // #nosec G204 -- command name/args come from vetted internal call sites. |
nothing calls this directly
no outgoing calls
no test coverage detected