aboutsummaryrefslogtreecommitdiffstats
path: root/browser_darwin.go
blob: 6b1fe8516810607da92b52547e57051e0909f5a1 (plain)
1
2
3
4
5
6
7
8
9
10
package browser

import (
	"os/exec"
)

func openBrowser(url string) error {
	cmd := exec.Command("open", url)
	return cmd.Run()
}