mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-10 20:07:32 -06:00
15 lines
266 B
Go
15 lines
266 B
Go
package openvpn
|
|
|
|
import "os/exec"
|
|
|
|
type CmdStarter interface {
|
|
Start(cmd *exec.Cmd) (
|
|
stdoutLines, stderrLines <-chan string,
|
|
waitError <-chan error, startErr error)
|
|
}
|
|
|
|
type CmdRunStarter interface {
|
|
Run(cmd *exec.Cmd) (output string, err error)
|
|
CmdStarter
|
|
}
|