// +build !windows,!darwin,!linux package main import ( "os" cli "gopkg.in/urfave/cli.v2" ) func runApp(app *cli.App) { app.Run(os.Args) }