5 lines
98 B
Python
5 lines
98 B
Python
from .trafficCog import TrafficCog
|
|
|
|
def setup(bot):
|
|
cog = TrafficCog(bot)
|
|
bot.add_cog(cog) |