Files
HomesteadToGo/relay/commands/commands.go
2025-11-30 10:58:16 +01:00

15 lines
305 B
Go

package commands
import "github.com/disgoorg/disgo/discord"
func getPingCommand() discord.SlashCommandCreate {
return discord.SlashCommandCreate{
Name: "ping",
Description: "Check whether the bot is responding.",
}
}
var Commands = []discord.ApplicationCommandCreate{
getPingCommand(),
}