-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembeds.go
More file actions
26 lines (22 loc) · 813 Bytes
/
embeds.go
File metadata and controls
26 lines (22 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package discord_chatbot
import (
"github.com/bwmarrin/discordgo"
)
var InvalidChannelEmbed = &discordgo.MessageEmbed{
Type: discordgo.EmbedTypeRich,
Title: "Invalid Channel",
Description: "This channel has not been enabled for bot usage.\n\nUse `/chat-new` with the `channel` option to enable this channel.",
Color: RED,
}
var BlacklistedUserEmbed = &discordgo.MessageEmbed{
Type: discordgo.EmbedTypeRich,
Title: "User Blacklisted",
Description: "You have been blacklisted from this bot. Contact the admin for help.",
Color: RED,
}
var DisabledGuildEmbed = &discordgo.MessageEmbed{
Type: discordgo.EmbedTypeRich,
Title: "Guild Disabled",
Description: "Bot usage in this guild has been disabled. Contact the admin for help.",
Color: RED,
}