1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-13 19:10:42 +00:00
amfora/webbrowser/open_browser_windows.go
2021-12-22 20:39:17 -05:00

20 lines
518 B
Go

//go:build windows && (!linux || !darwin || !freebsd || !netbsd || !openbsd)
// +build windows
// +build !linux !darwin !freebsd !netbsd !openbsd
package webbrowser
import "os/exec"
// Open opens `url` in default system browser.
func Open(url string) (string, error) {
proc := exec.Command("rundll32", "url.dll,FileProtocolHandler", url)
err := proc.Start()
if err != nil {
return "", err
}
//nolint:errcheck
go proc.Wait() // Prevent zombies, see #219
return "Opened in system default web browser", nil
}