mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-14 09:46:34 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
// +build !windows,!darwin,!linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
cli "github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func runApp(app *cli.App, shutdownC, graceShutdownC chan struct{}) {
|
|
app.Run(os.Args)
|
|
}
|