1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-15 19:15:24 +00:00
amfora/webbrowser/open_browser_windows.go

20 lines
518 B
Go
Raw Normal View History

2021-12-01 16:18:20 +00:00
//go:build windows && (!linux || !darwin || !freebsd || !netbsd || !openbsd)
2020-06-18 20:54:48 +00:00
// +build windows
// +build !linux !darwin !freebsd !netbsd !openbsd
package webbrowser
import "os/exec"
// Open opens `url` in default system browser.
2020-06-18 20:54:48 +00:00
func Open(url string) (string, error) {
proc := exec.Command("rundll32", "url.dll,FileProtocolHandler", url)
err := proc.Start()
2020-06-18 20:54:48 +00:00
if err != nil {
return "", err
}
2021-12-23 01:39:17 +00:00
//nolint:errcheck
go proc.Wait() // Prevent zombies, see #219
2020-06-18 20:54:48 +00:00
return "Opened in system default web browser", nil
}