cloudflared/token/launch_browser_other.go
Devin Carr 65247b6f0f TUN-7584: Bump go 1.20.6
Pins all docker and cfsetup builds to a specific go patch version.
Also ran go fix on repo.
2023-07-26 13:52:40 -07:00

12 lines
172 B
Go

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