const helpOrders … const helpBarTab … const helpReputation … const helpMissions … const helpBlackjack … const helpChampionship … const helpLocation … func Commands() (cmds []commands.Command) { … } type helpCommand … func (m helpCommand) Launch() commands.LaunchType { … } func (m helpCommand) DelayResponse() bool { … } func (m helpCommand) Inputs() []commands.CommandInput { … } func (m helpCommand) Name() string { … } func (m helpCommand) Description() string { … } func (m helpCommand) Handler() commands.CommandHandler { … } type helpCommandHandler … func (h helpCommandHandler) Flags() discordgo.MessageFlags { … } func (h helpCommandHandler) Handle(c commands.CommandActivation) { … } func Help(c commands.CommandActivation) { … } func helpOrdersPage(c commands.CommandComponentActivation) { … } func helpBartabPage(c commands.CommandComponentActivation) { … } func helpReputationPage(c commands.CommandComponentActivation) { … } func helpMissionsPage(c commands.CommandComponentActivation) { … } func helpBlackjackPage(c commands.CommandComponentActivation) { … } func helpChampionshipPage(c commands.CommandComponentActivation) { … } func helpLocationPage(c commands.CommandComponentActivation) { … }