rewrite: Message Tracker.

This commit is contained in:
2023-05-14 12:29:11 +03:00
parent 228fb9379c
commit b3e1fdd146
6 changed files with 1114 additions and 0 deletions

View File

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