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