This commit is contained in:
SowinskiBraeden committed 2024-11-16 20:48:24 -08:00
commit 14d4ed5e4a
9 files changed
+380

No files matched your search

+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env python
from discord import Intents
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:
async with bot:
await bot.start(bot.config.TOKEN)
asyncio.run(main())