(ctx context.Context, execCmd execCmdFunc, args ...string)
| 79 | } |
| 80 | |
| 81 | func runMCPExecOutput(ctx context.Context, execCmd execCmdFunc, args ...string) ([]byte, error) { |
| 82 | return runMCPSubprocessOutput(ctx, execCmd(ctx, args...)) |
| 83 | } |
| 84 | |
| 85 | func runMCPExecCombinedOutput(ctx context.Context, execCmd execCmdFunc, args ...string) ([]byte, error) { |
| 86 | return runMCPSubprocessCombinedOutput(ctx, execCmd(ctx, args...)) |
no test coverage detected