smaller example

This commit is contained in:
Lynn 2020-02-28 23:30:17 -08:00
parent 3b30b5c422
commit d6dfe3eb9b
No known key found for this signature in database
GPG Key ID: 9E60BEE0555C367B

View File

@ -3,11 +3,9 @@
package main package main
import ( import (
"os"
"github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
) )
func main() { func main() {
(&cli.App{}).Run(os.Args) (&cli.App{}).Run([]string{})
} }