// +build windows package gopher import "os/exec" func OpenBrowser(url string) error { return exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start() }