cloudflared-mirror/token/shell.go

8 lines
164 B
Go

package token
// OpenBrowser opens the specified URL in the default browser of the user
func OpenBrowser(url string) error {
return getBrowserCmd(url).Start()
}