
import discord

from backend.discord.state_engine import start



TOKEN = "MTUyMjA5MjY5MjYzOTcxMTI1Mw.Gzbn75.zNEuQKSoCykIsx-VQoOEMATaUxffDRqyc-k1gw"



intents = discord.Intents.default()

intents.message_content = True

intents.guilds = True



bot = discord.Client(intents=intents)



@bot.event

async def on_ready():

    print(f"[Discord] Logged in as {bot.user}")

    start(bot)



bot.run(TOKEN)

