2024-04-28 02:30:53 +00:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import "github.com/bwmarrin/discordgo"
|
|
|
|
|
|
|
|
// HelloCommand handles the !hello command
|
2024-04-28 02:56:42 +00:00
|
|
|
func hello(s *discordgo.Session, m *discordgo.MessageCreate) {
|
2024-04-28 02:30:53 +00:00
|
|
|
// Respond to the !hello command
|
|
|
|
_, _ = s.ChannelMessageSend(m.ChannelID, "Hello!")
|
|
|
|
}
|