12345678910111213141516171819202122232425262728 |
- package cli
- type BashCompleteFunc func(*Context)
- type BeforeFunc func(*Context) error
- type AfterFunc func(*Context) error
- type ActionFunc func(*Context) error
- type CommandNotFoundFunc func(*Context, string)
- type OnUsageErrorFunc func(context *Context, err error, isSubcommand bool) error
- type FlagStringFunc func(Flag) string
|