| 13 | type commandCtx = func(ctx context.Context, name string, args ...string) *exec.Cmd |
| 14 | |
| 15 | type Command struct { |
| 16 | *exec.Cmd |
| 17 | } |
| 18 | |
| 19 | func (gc *Command) Run() error { |
| 20 | stderr := &bytes.Buffer{} |
nothing calls this directly
no outgoing calls
no test coverage detected