Skip to content

Instantly share code, notes, and snippets.

View yurkeen's full-sized avatar

Yury Evtikhov yurkeen

View GitHub Profile
func openbrowser(url string) {
var err error
switch runtime.GOOS {
case "linux":
err = exec.Command("xdg-open", url).Start()
case "windows":
err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start()
case "darwin":
err = exec.Command("open", url).Start()