about summary refs log tree commit diff stats
path: root/main.py
blob: 5167f6e45ad8128558382509a0ebd728c48bf722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from discord import Client
from discord.intents import Intents

bot = Client(intents=[Intents.GUILD_MESSAGES])


@bot.event
async def on_ready():
    print(f"We have logged in as {bot.user.username}")

bot.run("NzM1MTA3NDc0OTY0ODczMzM3.G6_nDX.Ctozd9eWn3xY_lGFT46uCJjrHQ9fQYRHAAD9Ic")