feat(vcroles): Add voice autoroles.

This commit is contained in:
2024-10-05 04:07:46 +10:00
parent ce07f7ae73
commit 81e25e7efc
5 changed files with 211 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import logging
logger = logging.getLogger(__name__)
async def setup(bot):
from .cog import VoiceRoleCog
await bot.add_cog(VoiceRoleCog(bot))