mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 17:10:24 +08:00
12 lines
155 B
Go
12 lines
155 B
Go
//+build !windows,!darwin,!linux,!netbsd,!freebsd,!openbsd
|
|
|
|
package shell
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return nil
|
|
}
|