feat: Implement voicefix.

This commit is contained in:
2023-11-03 12:57:44 +02:00
parent 1ae7c60ba8
commit de02e64b15
7 changed files with 499 additions and 6 deletions

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))