package fiber
import (
"os/exec"
)
var dummyChildCmd = "go"
func dummyCmd() *exec.Cmd {
return exec.Command("cmd", "/C", dummyChildCmd, "version")
}