rewrite: Sysadmin module.
This commit is contained in:
15
bot/modules/sysadmin/__init__.py
Normal file
15
bot/modules/sysadmin/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from .exec_cog import Exec
|
||||
from .blacklists import Blacklists
|
||||
from .guild_log import GuildLog
|
||||
from .presence import PresenceCtrl
|
||||
|
||||
from .dash import LeoSettings
|
||||
|
||||
|
||||
async def setup(bot):
|
||||
await bot.add_cog(LeoSettings(bot))
|
||||
|
||||
await bot.add_cog(Blacklists(bot))
|
||||
await bot.add_cog(Exec(bot))
|
||||
await bot.add_cog(GuildLog(bot))
|
||||
await bot.add_cog(PresenceCtrl(bot))
|
||||
Reference in New Issue
Block a user