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()
|
||
|
}
|