blob: 124d42fc62c9baa2c159fd6c8eda1cb707b7efa3 [file] [log] [blame]
// +build windows
package reexec
import (
"os/exec"
)
func Command(args ...string) *exec.Cmd {
return &exec.Cmd{
Path: Self(),
Args: args,
}
}