2018-05-01 23:45:06 +00:00
|
|
|
// +build !windows,!darwin,!linux
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2020-08-05 10:49:53 +00:00
|
|
|
cli "github.com/urfave/cli/v2"
|
2018-05-01 23:45:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func runApp(app *cli.App, shutdownC, graceShutdownC chan struct{}) {
|
|
|
|
app.Run(os.Args)
|
|
|
|
}
|