KaniumCogs/trafficCog/__init__.py

7 lines
131 B
Python
Raw Normal View History

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