Initial Plugin Commit

This commit is contained in:
2025-08-01 00:41:24 +10:00
commit 2ea0658c73
8 changed files with 856 additions and 0 deletions

7
tracker/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
import logging
logger = logging.getLogger()
async def setup(bot):
from .component import TrackerComponent
await bot.add_component(TrackerComponent(bot))