Files
lilacbot/src/modules/__init__.py
Interitio 8339921f93 feat: Add yarn module for Lilac Misc.
Adds auto-reaction to emotes.
Adds 'voicestate' command for offline (un)muting.
Adds 'topvoice' command for current voice channel challenge.
2026-02-25 18:45:35 +10:00

9 lines
209 B
Python

this_package = "modules"
active = [".sysadmin", ".voicefix", ".messagelogger", ".voicelog", ".yarn"]
async def setup(bot):
for ext in active:
await bot.load_extension(ext, package=this_package)