mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 09:00:23 +08:00
14 lines
187 B
Go
14 lines
187 B
Go
// +build !windows,!darwin,!linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
cli "gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
func runApp(app *cli.App, shutdownC, graceShutdownC chan struct{}) {
|
|
app.Run(os.Args)
|
|
}
|