mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-22 15:46:51 +03:00
17 lines
440 B
Go
17 lines
440 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) {
|
|
err := exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return "Opened in system default web browser", nil
|
|
}
|