Name returns the category name string
()
| 53 | type CommandCategory interface { |
| 54 | // Name returns the category name string |
| 55 | Name() string |
| 56 | // VisibleCommands returns a slice of the Commands with Hidden=false |
| 57 | VisibleCommands() []*Command |
| 58 | } |
no outgoing calls