NukaNewsBot/commands/test.go

10 lines
256 B
Go
Raw Permalink Normal View History

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 test(s *discordgo.Session, m *discordgo.MessageCreate) {
2024-04-28 02:30:53 +00:00
// Respond to the !hello command
_, _ = s.ChannelMessageSend(m.ChannelID, "Hello! test")
}