mirror of
https://github.com/nkanaev/yarr.git
synced 2025-11-07 01:50:38 +00:00
10 lines
154 B
Go
10 lines
154 B
Go
//go:build linux || freebsd || openbsd
|
|
|
|
package platform
|
|
|
|
import "os/exec"
|
|
|
|
func open(input string) *exec.Cmd {
|
|
return exec.Command("xdg-open", input)
|
|
}
|