feat(core): Implement event log interface.

This commit is contained in:
2023-10-14 01:07:46 +03:00
parent 4457e60120
commit 7b6290b73e
4 changed files with 237 additions and 9 deletions

View File

@@ -1,6 +1,3 @@
from .cog import CoreCog
from .config import ConfigCog
from babel.translator import LocalBabel
@@ -8,5 +5,8 @@ babel = LocalBabel('lion-core')
async def setup(bot):
from .cog import CoreCog
from .config import ConfigCog
await bot.add_cog(CoreCog(bot))
await bot.add_cog(ConfigCog(bot))