basic setup, /ping added

This commit is contained in:
2025-11-30 10:58:16 +01:00
parent 781a499a6c
commit e045d0d01f
9 changed files with 296 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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(),
}