mirror of
https://github.com/cloudflare/cloudflared
synced 2026-06-08 13:33:07 +00:00
65247b6f0f
Pins all docker and cfsetup builds to a specific go patch version. Also ran go fix on repo.
14 lines
185 B
Go
14 lines
185 B
Go
//go:build !windows && !darwin && !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
cli "github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func runApp(app *cli.App, graceShutdownC chan struct{}) {
|
|
app.Run(os.Args)
|
|
}
|