7 lines
131 B
Python
7 lines
131 B
Python
from redbot.core.bot import Red
|
|
from .trafficCog import TrafficCog
|
|
|
|
def setup(bot):
|
|
cog = TrafficCog(bot)
|
|
bot.add_cog(cog)
|