Files
self-bot/Bot/Commands/snuggle.go
T
2025-03-23 13:38:56 -04:00

19 lines
527 B
Go

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)
}