shell.go 164 B

12345678
  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. }