type Runner interface { Run(outbuf, errbuff *bytes.Buffer) error Wait() error Kill() error }
func NewRunner(scriptPath string) Runner