mirror of
https://github.com/openziti/zrok.git
synced 2025-02-16 10:19:18 +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()
|
|
}
|