mirror of
https://github.com/runyanjake/discord.git
synced 2025-10-05 07:37:29 -07:00
13 lines
258 B
Python
13 lines
258 B
Python
import discord
|
|
|
|
def get_intents():
|
|
intents= discord.Intents.default()
|
|
|
|
# Specifying a list of enabled (True) intents.
|
|
intents.messages = True
|
|
intents.message_content = True
|
|
intents.voice_states = True
|
|
|
|
return intents
|
|
|