clear
This commit is contained in:
9 files changed
+380
No files matched your search
@@ -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())
|
||||
Reference in new issue
Block a user