launch_browser_other.go 172 B

123456789101112
  1. //go:build !windows && !darwin && !linux && !netbsd && !freebsd && !openbsd
  2. package token
  3. import (
  4. "os/exec"
  5. )
  6. func getBrowserCmd(url string) *exec.Cmd {
  7. return nil
  8. }