mirror of
https://github.com/nkanaev/yarr.git
synced 2025-09-15 19:00:15 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
//go:build !windows && !darwin
|
|
// +build !windows,!darwin
|
|
|
|
package platform
|
|
|
|
import "os/exec"
|
|
|
|
func open(input string) *exec.Cmd {
|
|
return exec.Command("xdg-open", input)
|
|
}
|