cloudflared-mirror/cmd/cloudflared/shell/launch_browser_darwin.go

12 lines
134 B
Go
Raw Normal View History

//+build darwin
package shell
import (
"os/exec"
)
func getBrowserCmd(url string) *exec.Cmd {
return exec.Command("open", url)
}