add example file

This commit is contained in:
Lynn 2020-02-28 23:12:46 -08:00
parent 1493c542fb
commit af5ec51a36
No known key found for this signature in database
GPG Key ID: 9E60BEE0555C367B
2 changed files with 15 additions and 0 deletions

2
.gitignore vendored
View File

@ -3,3 +3,5 @@
node_modules/
vendor
.idea
internal/example/built-example
coverage.txt

View File

@ -0,0 +1,13 @@
// minimal example CLI used for binary size checking
package main
import (
"os"
"github.com/urfave/cli/v2"
)
func main() {
(&cli.App{}).Run(os.Args)
}