mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-22 15:46:51 +03:00
15 lines
316 B
Go
15 lines
316 B
Go
// +build windows
|
|
// +build !linux !darwin !freebsd !netbsd !openbsd
|
|
|
|
package webbrowser
|
|
|
|
import "os/exec"
|
|
|
|
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
|
|
}
|