aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2016-06-09 17:44:42 +0800
committerBas van Kervel <bas@ethdev.com>2016-06-09 21:37:13 +0800
commit861add3d72bcfc6c6a8976eb82dc3e7b5288883e (patch)
tree88b062eafe5acc8ed8028d04638ed8bf2e7acfaf /Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go
parentc75d3b0ede005afc30aaa61f27bb5bbe2cf6a3f1 (diff)
downloadgo-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.gz
go-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.zst
go-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.zip
cmd/geth: codegansta/cli package renamed to urfave/cli
Diffstat (limited to 'Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go')
-rw-r--r--Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go b/Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go
new file mode 100644
index 000000000..f0440c563
--- /dev/null
+++ b/Godeps/_workspace/src/gopkg.in/urfave/cli.v1/cli.go
@@ -0,0 +1,19 @@
+// 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")
+// }
+//
+// app.Run(os.Args)
+// }
+package cli