package commands import "github.com/bwmarrin/discordgo" var SnuggleCommand = &discordgo.ApplicationCommand{ Name: "snuggle", Description: "Time to snuggle up and feel cozy!", } func HandleSnuggle(s *discordgo.Session, i *discordgo.InteractionCreate) { response := &discordgo.InteractionResponse{ Type: discordgo.InteractionResponseChannelMessageWithSource, Data: &discordgo.InteractionResponseData{ Content: "Time to snuggle up and feel cozy! 🥰", }, } s.InteractionRespond(i.Interaction, response) }