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