19 lines
527 B
Go
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)
|
|
}
|