Files
reforger-stats/main.py
T
2024-11-16 20:48:24 -08:00

17 lines
347 B
Python

#!/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())