Initial merger with Twitch interface.

This commit is contained in:
2024-08-27 17:41:33 +10:00
parent 7e6dcb006f
commit d10fd2fc1d
28 changed files with 1309 additions and 40 deletions

View File

@@ -1,6 +1,6 @@
this_package = 'modules'
active = [
active_discord = [
'.sysadmin',
'.config',
'.user_config',
@@ -28,7 +28,18 @@ active = [
'.test',
]
active_twitch = [
'.nowdoing',
'.shoutouts',
'.counters',
'.tagstrings',
]
def prepare(bot):
for ext in active_twitch:
bot.load_module(this_package + ext)
async def setup(bot):
for ext in active:
for ext in active_discord:
await bot.load_extension(ext, package=this_package)