Fox-V3/recyclingplant/__init__.py
2018-05-14 16:12:40 -04:00

10 lines
206 B
Python

from redbot.core import data_manager
from .recyclingplant import RecyclingPlant
def setup(bot):
plant = RecyclingPlant(bot)
data_manager.load_bundled_data(plant, __file__)
bot.add_cog(plant)