Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Command ¶
type Command interface {
//Signature The name and signature of the console command.
Signature() string
//Description The console command description.
Description() string
//Flags Set flags, document: https://github.com/urfave/cli/blob/master/docs/v2/manual.md#flags
Flags() []cli.Flag
//Subcommands Set Subcommands, document: https://github.com/urfave/cli/blob/master/docs/v2/manual.md#subcommands
Subcommands() []*cli.Command
//Handle Execute the console command.
Handle(c *cli.Context) error
}
Click to show internal directories.
Click to hide internal directories.