Skip to content

Commit b06f2e7

Browse files
committed
Fix EmbedTypeGifV value and add EmbedTypeAutoModerationMessage
1 parent e13fad5 commit b06f2e7

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

discord/embed.go

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ type EmbedType string
77

88
// Constants for EmbedType
99
const (
10-
EmbedTypeRich EmbedType = "rich"
11-
EmbedTypeImage EmbedType = "image"
12-
EmbedTypeVideo EmbedType = "video"
13-
EmbedTypeGifV EmbedType = "rich"
14-
EmbedTypeArticle EmbedType = "article"
15-
EmbedTypeLink EmbedType = "link"
10+
EmbedTypeRich EmbedType = "rich"
11+
EmbedTypeImage EmbedType = "image"
12+
EmbedTypeVideo EmbedType = "video"
13+
EmbedTypeGifV EmbedType = "gifv"
14+
EmbedTypeArticle EmbedType = "article"
15+
EmbedTypeLink EmbedType = "link"
16+
EmbedTypeAutoModerationMessage EmbedType = "auto_moderation_message"
1617
)
1718

1819
// Embed allows you to send embeds to discord

0 commit comments

Comments
 (0)