f103dcf4d4
Functionally this adds the 'profiles' plugin, replaces the psqlmapper with the submodule, and changes how data version checks are performed, which is now the responsibility of the client. The version history schema has changed, and the module schemas have been removed from the schema initialisation file.
16 lines
252 B
Python
16 lines
252 B
Python
this_package = "modules"
|
|
|
|
active = [
|
|
".sysadmin",
|
|
".profiles",
|
|
".voicefix",
|
|
".messagelogger",
|
|
".voicelog",
|
|
".yarn"
|
|
]
|
|
|
|
|
|
async def setup(bot):
|
|
for ext in active:
|
|
await bot.load_extension(ext, package=this_package)
|