cloudflare/cloudflared

Public

mirrored from https://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2019.11.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmd/cloudflared/shell/launch_browser_darwin.go

11lines · modecode

1//+build darwin
2
3package shell
4
5import (
6 "os/exec"
7)
8
9func getBrowserCmd(url string) *exec.Cmd {
10 return exec.Command("open", url)
11}
12