More renaming. trying to keep consistent with Flags API

This commit is contained in:
Jeremy Saenz 2013-07-14 07:35:08 -07:00
parent e72d8e22aa
commit 0c14bbdc56

6
cli.go
View File

@ -2,15 +2,15 @@ package cli
type App struct { type App struct {
Name string Name string
Summary string Usage string
Action Action Action Action
Commands []Command Commands []Command
} }
type Command struct { type Command struct {
Name string Name string
Shortname string ShortName string
Summary string Usage string
Description string Description string
Action Action Action Action
} }