10 lines
157 B
Go
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()
|
|
}
|