mirror of
https://github.com/openziti/zrok.git
synced 2025-02-03 12:00:05 +01:00
8 lines
146 B
Go
8 lines
146 B
Go
package main
|
|
|
|
import "os/exec"
|
|
|
|
func openBrowser(url string) error {
|
|
return exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Run()
|
|
}
|