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