feat: Implement voicefix.

This commit is contained in:
2023-11-03 12:57:44 +02:00
commit 5b8375884f
3 changed files with 474 additions and 0 deletions

7
__init__.py Normal file
View File

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