mirror of
https://github.com/makew0rld/amfora.git
synced 2024-12-04 14:46:29 -05: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
|
|
}
|