Ruby-Cogs/leaderboard/__init__.py

7 lines
No EOL
177 B
Python

from .leaderboard import Leaderboard
async def setup(bot):
"""Load the Leaderboard cog."""
cog = Leaderboard(bot)
await cog.initialize()
await bot.add_cog(cog)