mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 00:50:24 +08:00
Pins all docker and cfsetup builds to a specific go patch version. Also ran go fix on repo.
12 lines
172 B
Go
12 lines
172 B
Go
//go:build !windows && !darwin && !linux && !netbsd && !freebsd && !openbsd
|
|
|
|
package token
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return nil
|
|
}
|