diff options
author | baude <bbaude@redhat.com> | 2019-02-08 20:09:04 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-11 17:48:34 -0600 |
commit | a1ab6788e4df5cf270e99befdd69026e5d7fcd3a (patch) | |
tree | 62620c54b77201acd5ed578c3ab8b55da8f6ac6a /vendor/github.com/urfave/cli/cli.go | |
parent | 54a5584d84d37632c1c8480d437a012625526a84 (diff) | |
download | podman-a1ab6788e4df5cf270e99befdd69026e5d7fcd3a.tar.gz podman-a1ab6788e4df5cf270e99befdd69026e5d7fcd3a.tar.bz2 podman-a1ab6788e4df5cf270e99befdd69026e5d7fcd3a.zip |
Remove urfave/cli from libpod
This is the final cleanup to remove urfave/sli from libpod. Removed
old, disabled tests that have not been run in over a year.
Signed-off-by: baude <bbaude@redhat.com>
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 |