cloudflared-mirror/token/launch_browser_other.go

13 lines
232 B
Go

//go:build !windows && !darwin && !linux && !netbsd && !freebsd && !openbsd
// +build !windows,!darwin,!linux,!netbsd,!freebsd,!openbsd
package token
import (
"os/exec"
)
func getBrowserCmd(url string) *exec.Cmd {
return nil
}