Description sets the group's description.
(description string)
| 75 | |
| 76 | // Description sets the group's description. |
| 77 | func (g *Group) Description(description string) *Group { |
| 78 | g.description = description |
| 79 | return g |
| 80 | } |
| 81 | |
| 82 | // WithShowHelp sets whether or not the group's help should be shown. |
| 83 | func (g *Group) WithShowHelp(show bool) *Group { |
no outgoing calls