Files
esengine--deepseek-reasonix/desktop/open_workspace_darwin.go
T
2026-07-13 13:00:08 +08:00

10 lines
140 B
Go

//go:build darwin
package main
import "os/exec"
func openWorkspacePath(path string) error {
return exec.Command("open", path).Start()
}