rewrite: New ranks module.

This commit is contained in:
2023-05-14 12:33:33 +03:00
parent 6683d27dfd
commit 90b967201d
10 changed files with 2121 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import logging
from meta import LionBot
from babel.translator import LocalBabel
babel = LocalBabel('ranks')
logger = logging.getLogger(__name__)
async def setup(bot: LionBot):
from .cog import RankCog
await bot.add_cog(RankCog(bot))