From ea3ef24c9d2fbb2c02ed52c86d58d9f2bf562cbb Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Fri, 1 Nov 2013 07:41:43 -0700 Subject: [PATCH] Update README.md Added API docs url --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ebe5f3f..3fb272c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,9 @@ # cli.go cli.go is simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way. +You can view the API docs here: +http://godoc.org/github.com/codegangsta/cli + ## Overview Command line apps are usually so tiny that there is absolutely no reason why your code should *not* be self-documenting. Things like generating help text and parsing command flags/options should not hinder productivity when writing a command line app.