feat: add password protection cog for channels

Adds new Discord bot cog enabling password-protected channels.
Includes verification, channel management, whitelist/blacklist,
and admin password recovery features.
This commit is contained in:
2025-09-11 17:22:36 -04:00
parent 5ed8002b40
commit 859ac84b68
3 changed files with 381 additions and 0 deletions

5
pp/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .passwdprotect import Passwd
async def setup(bot):
cog = Passwd(bot)
await bot.add_cog(cog)