Files
unstable-cogs/pp/__init__.py
Unstable Kitsune 859ac84b68 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.
2025-09-11 17:22:36 -04:00

6 lines
106 B
Python

from .passwdprotect import Passwd
async def setup(bot):
cog = Passwd(bot)
await bot.add_cog(cog)