KaniumCogs/trafficCog/__init__.py

6 lines
147 B
Python
Raw Normal View History

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