mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-12 06:46:34 +00:00

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)
|
|
}
|