diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-12 03:13:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 03:13:19 +0100 |
commit | 89237033fd38d91308ff7e5b9511aff41f44e0e8 (patch) | |
tree | 188ddbf1f914a3e3040c7fede6e27a5ab17af31a /vendor/github.com/urfave/cli/cli.go | |
parent | ea20ead35b69b1259f2ff3b00f558c473a921b95 (diff) | |
parent | a1ab6788e4df5cf270e99befdd69026e5d7fcd3a (diff) | |
download | podman-89237033fd38d91308ff7e5b9511aff41f44e0e8.tar.gz podman-89237033fd38d91308ff7e5b9511aff41f44e0e8.tar.bz2 podman-89237033fd38d91308ff7e5b9511aff41f44e0e8.zip |
Merge pull request #2300 from baude/cleanupurfave
Remove urfave/cli from libpod
Diffstat (limited to 'vendor/github.com/urfave/cli/cli.go')
-rw-r--r-- | vendor/github.com/urfave/cli/cli.go | 22 |
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 90c07eb8e..000000000 --- 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 |