bombadillo/gopher/open_browser_windows.go

10 lines
169 B
Go

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