rewrite (userconfig): Add user config cog.
This commit is contained in:
11
src/modules/user_config/__init__.py
Normal file
11
src/modules/user_config/__init__.py
Normal 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))
|
||||
Reference in New Issue
Block a user