aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/urfave/cli/cli.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-07-09 13:22:59 +0200
committerMichael Muré <batolettre@gmail.com>2019-07-09 13:22:59 +0200
commit14022953823fc768849b6cc826b05b61a89b7626 (patch)
tree4d4f70ee46b9cc230d6602cb066c697f8a0a4e8e /vendor/github.com/urfave/cli/cli.go
parenta5c42b7c11fc082d47027ba5e0dbdeddcc14e62e (diff)
downloadgit-bug-14022953823fc768849b6cc826b05b61a89b7626.tar.gz
graphql: don't use the gqlgen command to generate to avoid pulling urfave/cli
Diffstat (limited to 'vendor/github.com/urfave/cli/cli.go')
-rw-r--r--vendor/github.com/urfave/cli/cli.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/github.com/urfave/cli/cli.go b/vendor/github.com/urfave/cli/cli.go
deleted file mode 100644
index 90c07eb8..00000000
--- a/vendor/github.com/urfave/cli/cli.go
+++ /dev/null
@@ -1,22 +0,0 @@
-// Package cli provides a minimal framework for creating and organizing command line
-// Go applications. cli is designed to be easy to understand and write, the most simple
-// cli application can be written as follows:
-// func main() {
-// cli.NewApp().Run(os.Args)
-// }
-//
-// Of course this application does not do much, so let's make this an actual application:
-// func main() {
-// app := cli.NewApp()
-// app.Name = "greet"
-// app.Usage = "say a greeting"
-// app.Action = func(c *cli.Context) error {
-// println("Greetings")
-// return nil
-// }
-//
-// app.Run(os.Args)
-// }
-package cli
-
-//go:generate python ./generate-flag-types cli -i flag-types.json -o flag_generated.go