NukaNewsBot/commands/hello_command.go

10 lines
259 B
Go
Raw Normal View History

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