mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-17 01:16:35 +03:00
10 lines
151 B
Go
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
|
|
}
|