mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 03:46:35 +00:00
7 lines
163 B
Go
7 lines
163 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()
|
|
}
|