Adds new Discord bot cog enabling password-protected channels. Includes verification, channel management, whitelist/blacklist, and admin password recovery features.
6 lines
106 B
Python
6 lines
106 B
Python
from .passwdprotect import Passwd
|
|
|
|
async def setup(bot):
|
|
cog = Passwd(bot)
|
|
await bot.add_cog(cog)
|