6 lines
147 B
Python
6 lines
147 B
Python
from .trafficCog import TrafficCog
|
|
from redbot.core.bot import Red
|
|
|
|
async def setup(bot: Red):
|
|
cog = TrafficCog(bot)
|
|
await bot.add_cog(cog) |