Versions in this module Expand all Collapse all v0 v0.1.0 Jul 22, 2013 Changes in this version + var AppHelpTemplate = ... + var CommandHelpTemplate = ... + type App struct + Action func(context *Context) + Commands []Command + Flags []Flag + Name string + Usage string + Version string + func NewApp() *App + func (a *App) Run(arguments []string) + type BoolFlag struct + Name string + Usage string + func (f BoolFlag) Apply(set *flag.FlagSet) + func (f BoolFlag) String() string + type Command struct + Action func(context *Context) + Description string + Flags []Flag + Name string + ShortName string + Usage string + func (c Command) HasName(name string) bool + func (c Command) Run(ctx *Context) + type Context struct + App *App + func NewContext(app *App, set *flag.FlagSet, globalSet *flag.FlagSet) *Context + func (c *Context) Args() []string + func (c *Context) Bool(name string) bool + func (c *Context) GlobalBool(name string) bool + func (c *Context) GlobalInt(name string) int + func (c *Context) GlobalString(name string) string + func (c *Context) Int(name string) int + func (c *Context) String(name string) string + type Flag interface + Apply func(*flag.FlagSet) + type IntFlag struct + Name string + Usage string + Value int + func (f IntFlag) Apply(set *flag.FlagSet) + func (f IntFlag) String() string + type StringFlag struct + Name string + Usage string + Value string + func (f StringFlag) Apply(set *flag.FlagSet) + func (f StringFlag) String() string Other modules containing this package gopkg.in/urfave/cli.v1