mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 23:26:35 +00:00

- Move packages the provide generic functionality (such as config) from `cmd` subtree to top level. - Remove all dependencies on `cmd` subtree from top level packages. - Consolidate all code dealing with token generation and transfer to a single cohesive package.
12 lines
155 B
Go
12 lines
155 B
Go
//+build !windows,!darwin,!linux,!netbsd,!freebsd,!openbsd
|
|
|
|
package token
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return nil
|
|
}
|