7 lines
132 B
Python
7 lines
132 B
Python
from .pokecord import Pokecord
|
|
|
|
|
|
async def setup(bot):
|
|
cog = Pokecord(bot)
|
|
await cog.initalize()
|
|
await bot.add_cog(cog)
|