feat: add kBump database bridge cog

Integrates MongoDB connection to kBump services for Red bot, enabling data reading and interaction.

Adds command to check server bump status with detailed embed output.
This commit is contained in:
2025-09-11 17:16:29 -04:00
parent c9431d0c86
commit 5b9c27fcad
3 changed files with 116 additions and 0 deletions

4
kbump/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from .kbump import kBump
async def setup(bot):
await bot.add_cog(kBump(bot))