12 lines
208 B
Go
12 lines
208 B
Go
|
|
//go:build !windows
|
||
|
|
|
||
|
|
package api
|
||
|
|
|
||
|
|
import "os/exec"
|
||
|
|
|
||
|
|
func launcherExecCommand(name string, args ...string) *exec.Cmd {
|
||
|
|
return exec.Command(name, args...)
|
||
|
|
}
|
||
|
|
|
||
|
|
func applyLauncherWindowsProcAttrs(_ *exec.Cmd) {}
|