mirror of
https://github.com/runyanjake/discord.git
synced 2025-10-04 23:27:29 -07:00
12 lines
225 B
Python
12 lines
225 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
|
|
|
|
return intents
|
|
|