mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-12 08:26:34 +00:00
12 lines
134 B
Go
12 lines
134 B
Go
//+build darwin
|
|
|
|
package shell
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return exec.Command("open", url)
|
|
}
|