1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-05 17:10:24 +08:00
Files
terasu-cloudflared/cmd/cloudflared/shell/launch_browser_darwin.go
2019-09-24 18:27:37 +00:00

12 lines
134 B
Go

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