mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-26 21:35:09 +03:00
14 lines
229 B
Go
14 lines
229 B
Go
|
// +build darwin
|
||
|
|
||
|
package webbrowser
|
||
|
|
||
|
import "os/exec"
|
||
|
|
||
|
func Open(url string) (string, error) {
|
||
|
err := exec.Command("open", url).Start()
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return "Opened in system default web browser", nil
|
||
|
}
|