KaniumCogs/trafficCog/__init__.py

5 lines
98 B
Python
Raw Normal View History

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)
2024-04-10 16:26:05 +02:00
bot.add_cog(cog)