pepebot/discord/handlers.go

12 lines
414 B
Go
Raw Normal View History

2021-06-03 12:50:42 +02:00
package main
import "github.com/bwmarrin/discordgo"
func newCringe(s *discordgo.Session, m *discordgo.MessageCreate) {
s.ChannelMessageSend(m.ChannelID, "this is a test message right from the new command system!")
}
2021-06-03 12:54:03 +02:00
func newSendPepe(s *discordgo.Session, m *discordgo.MessageCreate) {
s.ChannelMessageSend(m.ChannelID, "cmd not yet working, but this needed to be registered otherwise the code would break")
}