-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintents.go
26 lines (23 loc) · 836 Bytes
/
intents.go
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 godiscord
const (
IntentGuilds = 1 << 0
IntentGuildMembers = 1 << 1
IntentGuildModeration = 1 << 2
IntentGuildEmojisAndStickers = 1 << 3
IntentGuildIntegrations = 1 << 4
IntentGuildWebhooks = 1 << 5
IntentGuildInvites = 1 << 6
IntentGuildVoiceStates = 1 << 7
IntentGuildPresences = 1 << 8
IntentGuildMessages = 1 << 9
IntentGuildMessageReactions = 1 << 10
IntentGuildMessageTyping = 1 << 11
IntentDirectMessages = 1 << 12
IntentDirectMessageReactions = 1 << 13
IntentDirectMessageTyping = 1 << 14
IntentMessageContent = 1 << 15
IntentGuildScheduledEvents = 1 << 16
IntentAutoModerationConfiguration = 1 << 20
IntentAutoModerationExecution = 1 << 21
)
// TODO: make some sensible default intents.