7 lines
158 B
Python
7 lines
158 B
Python
from discord import Intents
|
|
from libbot.pycord.classes import PycordBot
|
|
|
|
intents = Intents().all()
|
|
intents.members = True
|
|
client = PycordBot(intents=intents)
|