1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-21 19:35:23 +00:00
amfora/webbrowser/open_browser_darwin.go
Timur Ismagilov 4a71b691ea
Implement a more robust algorithm for opening web links on unices (#93)
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com>
2020-10-01 17:06:50 -04:00

15 lines
276 B
Go

// +build darwin
package webbrowser
import "os/exec"
// Open opens `url` in default system browser.
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
}