mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-10 20:07:32 -06:00
12 lines
194 B
Go
12 lines
194 B
Go
package command
|
|
|
|
import "io"
|
|
|
|
type execCmd interface {
|
|
CombinedOutput() ([]byte, error)
|
|
StdoutPipe() (io.ReadCloser, error)
|
|
StderrPipe() (io.ReadCloser, error)
|
|
Start() error
|
|
Wait() error
|
|
}
|