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

10 lines
157 B
Go

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