Initial framework
This commit is contained in:
15
src/modules/__init__.py
Normal file
15
src/modules/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
this_package = 'modules'
|
||||
|
||||
active = [
|
||||
'.vstudio',
|
||||
]
|
||||
|
||||
|
||||
def prepare(bot):
|
||||
for ext in active:
|
||||
bot.load_module(this_package + ext)
|
||||
|
||||
async def setup(bot):
|
||||
for ext in active:
|
||||
await bot.load_module(this_package + ext)
|
||||
Reference in New Issue
Block a user