KaniumCogs/trafficCog/__init__.py

6 lines
147 B
Python
Raw Normal View History

from redbot.core.bot import Red
from .trafficCog import TrafficCog
2024-04-10 16:50:32 +02:00
async def setup(bot: Red):
2023-06-01 21:56:21 +02:00
cog = TrafficCog(bot)
2024-04-10 16:50:32 +02:00
await bot.add_cog(cog)