9 lines
146 B
Python
9 lines
146 B
Python
from babel import LocalBabel
|
|
|
|
babel = LocalBabel('core')
|
|
|
|
async def setup(bot):
|
|
from .cog import CoreCog
|
|
|
|
await bot.add_cog(CoreCog(bot))
|