urfave-cli/command.go

11 lines
158 B
Go
Raw Normal View History

package cli
type Command struct {
Name string
ShortName string
Usage string
Description string
Action Handler
Flags []Flag
}