12 lines
205 B
Python
12 lines
205 B
Python
from redbot.core import data_manager
|
|
|
|
from .conquest import Conquest
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Conquest(bot)
|
|
data_manager.bundled_data_path(cog)
|
|
await cog.load_data()
|
|
|
|
bot.add_cog(cog)
|