func Commands() (all []commands.Command) { … } type fishslapCommand … func (m fishslapCommand) Launch() commands.LaunchType { … } func (m fishslapCommand) DelayResponse() bool { … } func (m fishslapCommand) Inputs() []commands.CommandInput { … } func (m fishslapCommand) Name() string { … } func (m fishslapCommand) Description() string { … } func (m fishslapCommand) Handler() commands.CommandHandler { … } type fishslapCommandHandler … func (h fishslapCommandHandler) Flags() discordgo.MessageFlags { … } func (h fishslapCommandHandler) Handle(c commands.CommandActivation) { … } func FishSlap(c commands.CommandActivation) { … }