TUN-3945: Fix runApp signature for generic service

This commit is contained in:
Areg Harutyunyan 2021-02-19 22:06:57 +00:00
parent 5d76e940c7
commit 117766562b
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ import (
cli "github.com/urfave/cli/v2"
)
func runApp(app *cli.App, shutdownC, graceShutdownC chan struct{}) {
func runApp(app *cli.App, graceShutdownC chan struct{}) {
app.Run(os.Args)
}