picoclaw/web/backend/api/exec_nonwindows.go

12 lines
201 B
Go
Raw Normal View History

//go:build !windows
package api
import "os/exec"
func launcherExecCommand(name string, args ...string) *exec.Cmd {
return exec.Command(name, args...)
}
func applyLauncherProcAttrs(_ *exec.Cmd) {}