initial commit

This commit is contained in:
SowinskiBraeden committed 2024-11-16 20:51:23 -08:00
1 parent 14d4ed5e4a
commit 9e2ee8f8e4
4 files changed
+7 -57

No files matched your search

+6 -5
View File
@@ -5,12 +5,13 @@ import asyncio
from src.ReforgerStatsBot import ReforgerStats
from config import Config
intents = Intents.default()
intents.message_content = True
bot = ReforgerStats(Config(), "!", intents)
async def main() -> None:
intents = Intents.default()
intents.message_content = True
bot = ReforgerStats(Config(), "!", intents)
async with bot:
await bot.start(bot.config.TOKEN)
asyncio.run(main())
if __name__ == "__main__":
asyncio.run(main())