2013-07-19 00:29:06 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
type Command struct {
|
|
|
|
Name string
|
|
|
|
ShortName string
|
|
|
|
Usage string
|
|
|
|
Description string
|
|
|
|
Action Handler
|
|
|
|
Flags []Flag
|
|
|
|
}
|
2013-07-19 02:23:00 +00:00
|
|
|
|
|
|
|
func (command Command) Run(c *Context) {
|
|
|
|
set := flagSet(command.Flags)
|
|
|
|
set.Parse(c.Args()[1:])
|
|
|
|
command.Action(NewContext(set, c.globalSet))
|
|
|
|
}
|
2013-07-19 02:30:18 +00:00
|
|
|
|
|
|
|
func (command Command) HasName(name string) bool {
|
|
|
|
return command.Name == name || command.ShortName == name
|
|
|
|
}
|