Files
Sylve/pkg/exe/executer.go
T

10 lines
151 B
Go

package exe
import (
"io"
)
type Executor interface {
Run(stdin io.Reader, stdout io.Writer, stderr io.Writer, cmd string, args ...string) error
}