rewrite (userconfig): Add user config cog.

This commit is contained in:
2023-03-08 11:58:29 +02:00
parent 65a34852a0
commit 9d052bdafd
2 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import logging
from babel.translator import LocalBabel
logger = logging.getLogger(__name__)
babel = LocalBabel('user_config')
async def setup(bot):
from .cog import UserConfigCog
await bot.add_cog(UserConfigCog(bot))