mirror of
https://github.com/cloudflare/cloudflared
synced 2026-06-08 13:33:07 +00:00
12 lines
160 B
Go
12 lines
160 B
Go
//+build linux freebsd openbsd netbsd
|
|
|
|
package shell
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return exec.Command("xdg-open", url)
|
|
}
|