shell.go 163 B

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