rewrite: New ranks module.
This commit is contained in:
12
src/modules/ranks/__init__.py
Normal file
12
src/modules/ranks/__init__.py
Normal 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))
|
||||
Reference in New Issue
Block a user