mirror of
https://github.com/openziti/zrok.git
synced 2024-11-29 11:34:07 +01:00
8 lines
111 B
Go
8 lines
111 B
Go
package main
|
|
|
|
import "os/exec"
|
|
|
|
func openBrowser(url string) error {
|
|
return exec.Command("open", url).Run()
|
|
}
|