browser_darwin.go

1package browser
2
3func openBrowser(url string) error {
4	return runCmd("open", url)
5}